Task: | Osajono |
Sender: | @.+-_ |
Submission time: | 2015-09-30 17:47:26 +0300 |
Language: | Java |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | RUNTIME ERROR | 0 |
#2 | RUNTIME ERROR | 0 |
#3 | RUNTIME ERROR | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | RUNTIME ERROR | 0.17 s | 1 | details |
#2 | RUNTIME ERROR | 0.17 s | 1 | details |
#3 | RUNTIME ERROR | 0.17 s | 1 | details |
#4 | RUNTIME ERROR | 0.19 s | 1 | details |
#5 | RUNTIME ERROR | 0.18 s | 1 | details |
#6 | RUNTIME ERROR | 0.17 s | 2 | details |
#7 | RUNTIME ERROR | 0.17 s | 2 | details |
#8 | RUNTIME ERROR | 0.18 s | 2 | details |
#9 | RUNTIME ERROR | 0.20 s | 2 | details |
#10 | RUNTIME ERROR | 0.18 s | 2 | details |
#11 | RUNTIME ERROR | 0.17 s | 3 | details |
#12 | RUNTIME ERROR | 0.17 s | 3 | details |
#13 | RUNTIME ERROR | 0.18 s | 3 | details |
#14 | RUNTIME ERROR | 0.17 s | 3 | details |
#15 | RUNTIME ERROR | 0.17 s | 3 | details |
Code
public class Kirjs2 {static long[] uoleviSchedule, maijaSchedule, theOtherGuySchedule;public static boolean schedulesClear(int day, int book) {return uoleviSchedule[day] != book && maijaSchedule[day] != book;}public static void main(String[] args) {IO oi = new IO();int bookCount = oi.nextInt();uoleviSchedule = new long[bookCount];maijaSchedule = new long[bookCount];theOtherGuySchedule = new long[bookCount];for(int i = 0; i < bookCount; i++)uoleviSchedule[i] = oi.nextInt() - 1;for(int i = 0; i < bookCount; i++) {maijaSchedule[i] = oi.nextInt() - 1;theOtherGuySchedule[i] = i;}long temp;for(int day = 0; day < bookCount; day++) {if(theOtherGuySchedule[day] == uoleviSchedule[day]) {for(int dayToSwapWith = 0; dayToSwapWith < bookCount; dayToSwapWith++) {if(schedulesClear(dayToSwapWith, day) && schedulesClear(day, dayToSwapWith)) {temp = theOtherGuySchedule[dayToSwapWith];theOtherGuySchedule[dayToSwapWith] = theOtherGuySchedule[day];theOtherGuySchedule[day] = temp;}}} else if(theOtherGuySchedule[day] == maijaSchedule[day]) {for(int dayToSwapWith = 0; dayToSwapWith < bookCount; dayToSwapWith++) {if(schedulesClear(dayToSwapWith, day) && schedulesClear(day, dayToSwapWith)) {temp = theOtherGuySchedule[dayToSwapWith];theOtherGuySchedule[dayToSwapWith] = theOtherGuySchedule[day];theOtherGuySchedule[day] = temp;}}}}String result = "";for(int i = 0; i < bookCount; i++)result += (theOtherGuySchedule[i]+1) + " ";oi.println(result.substring(0, result.length()-1));oi.close();}}
Test details
Test 1
Group: 1
Verdict: RUNTIME ERROR
input |
---|
BBBAABBBAAAABBAAAABAABAABBBBBB... |
correct output |
---|
2554 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.RuntimeException: IO.nextInt: Invalid int. at IO.nextInt(IO.java:111) at Kirjs2.main(Kirjs2.java:11)
Test 2
Group: 1
Verdict: RUNTIME ERROR
input |
---|
GDFVYWQCZAFGICSXOSWBZMGPDBSSVL... |
correct output |
---|
299 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.RuntimeException: IO.nextInt: Invalid int. at IO.nextInt(IO.java:111) at Kirjs2.main(Kirjs2.java:11)
Test 3
Group: 1
Verdict: RUNTIME ERROR
input |
---|
AAAAAAAAAAAAAAAAAAAAAAAAAZAAAA... |
correct output |
---|
4314 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.RuntimeException: IO.nextInt: Invalid int. at IO.nextInt(IO.java:111) at Kirjs2.main(Kirjs2.java:11)
Test 4
Group: 1
Verdict: RUNTIME ERROR
input |
---|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
correct output |
---|
4231 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.RuntimeException: IO.nextInt: Invalid int. at IO.nextInt(IO.java:111) at Kirjs2.main(Kirjs2.java:11)
Test 5
Group: 1
Verdict: RUNTIME ERROR
input |
---|
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ... |
correct output |
---|
5050 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.RuntimeException: IO.nextInt: Invalid int. at IO.nextInt(IO.java:111) at Kirjs2.main(Kirjs2.java:11)
Test 6
Group: 2
Verdict: RUNTIME ERROR
input |
---|
BBABABBBABBAABBABBABAABAAABABA... |
correct output |
---|
6253029 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.RuntimeException: IO.nextInt: Invalid int. at IO.nextInt(IO.java:111) at Kirjs2.main(Kirjs2.java:11)
Test 7
Group: 2
Verdict: RUNTIME ERROR
input |
---|
RBKJMLDVQMKHYKCNDIVVKOMFUXTFMG... |
correct output |
---|
485173 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.RuntimeException: IO.nextInt: Invalid int. at IO.nextInt(IO.java:111) at Kirjs2.main(Kirjs2.java:11)
Test 8
Group: 2
Verdict: RUNTIME ERROR
input |
---|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
correct output |
---|
12427725 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.RuntimeException: IO.nextInt: Invalid int. at IO.nextInt(IO.java:111) at Kirjs2.main(Kirjs2.java:11)
Test 9
Group: 2
Verdict: RUNTIME ERROR
input |
---|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
correct output |
---|
12467549 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.RuntimeException: IO.nextInt: Invalid int. at IO.nextInt(IO.java:111) at Kirjs2.main(Kirjs2.java:11)
Test 10
Group: 2
Verdict: RUNTIME ERROR
input |
---|
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ... |
correct output |
---|
12502500 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.RuntimeException: IO.nextInt: Invalid int. at IO.nextInt(IO.java:111) at Kirjs2.main(Kirjs2.java:11)
Test 11
Group: 3
Verdict: RUNTIME ERROR
input |
---|
BAAAAABABBABAABAABABABBBABBAAB... |
correct output |
---|
2500051369 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.RuntimeException: IO.nextInt: Invalid int. at IO.nextInt(IO.java:111) at Kirjs2.main(Kirjs2.java:11)
Test 12
Group: 3
Verdict: RUNTIME ERROR
input |
---|
ABBURXDRVXAYBPXXOQZNYHLWGUEEWR... |
correct output |
---|
192407124 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.RuntimeException: IO.nextInt: Invalid int. at IO.nextInt(IO.java:111) at Kirjs2.main(Kirjs2.java:11)
Test 13
Group: 3
Verdict: RUNTIME ERROR
input |
---|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
correct output |
---|
4998050400 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.RuntimeException: IO.nextInt: Invalid int. at IO.nextInt(IO.java:111) at Kirjs2.main(Kirjs2.java:11)
Test 14
Group: 3
Verdict: RUNTIME ERROR
input |
---|
AAAAAAAAAAAAAAAAAAAAAAAAAAAAAA... |
correct output |
---|
4998850144 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.RuntimeException: IO.nextInt: Invalid int. at IO.nextInt(IO.java:111) at Kirjs2.main(Kirjs2.java:11)
Test 15
Group: 3
Verdict: RUNTIME ERROR
input |
---|
QQQQQQQQQQQQQQQQQQQQQQQQQQQQQQ... |
correct output |
---|
5000050000 |
user output |
---|
(empty) |
Error:
Exception in thread "main" java.lang.RuntimeException: IO.nextInt: Invalid int. at IO.nextInt(IO.java:111) at Kirjs2.main(Kirjs2.java:11)