Created
October 5, 2014 18:42
-
-
Save webmonch/ec259a8c0d3a6bcf6d6d to your computer and use it in GitHub Desktop.
Disorder
This file contains 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
import java.io.File; | |
import java.io.IOException; | |
import java.io.PrintWriter; | |
import java.util.Arrays; | |
import java.util.Scanner; | |
public class Main { | |
public static void main(String [] args) throws IOException { | |
//Scanner sc = new Scanner(new File("data.txt")); | |
Scanner sc = new Scanner(System.in); | |
PrintWriter out = new PrintWriter(System.out); | |
while (sc.hasNextInt()) { | |
int ammount = sc.nextInt(); | |
int [] nums = new int[ammount]; | |
int index = 0; | |
while (ammount > 0) { | |
--ammount; | |
nums[index++] = sc.nextInt(); | |
} | |
Arrays.sort(nums); | |
int res = 0; | |
for (int i = 0; i < nums.length; ++i) { | |
int num = i+1; | |
if (num != nums[i]) { | |
res = num; | |
break; | |
} | |
} | |
out.println(res); | |
out.flush(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment