This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
class Solution { | |
static void Main(String[] args) { | |
/* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution */ | |
int findMe = Convert.ToInt32(Console.ReadLine()); | |
int arraySize = Convert.ToInt32(Console.ReadLine()); | |
int foundHere = 0; | |
string[] findHere = Console.ReadLine().Split(' '); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.IO; | |
class Solution { | |
static void Main(String[] args) { | |
/* Enter your code here. Read input from STDIN. Print output to STDOUT. Your class should be named Solution */ | |
string[] theInput = Console.ReadLine().Split(' '); | |
int howFar = Convert.ToInt32(theInput[2]); | |
ulong[] theResults = new UInt64[howFar+2]; | |
theResults[0] = Convert.ToUInt64(theInput[0]); |
NewerOlder