結果

問題 No.2044 Infinite Nim
ユーザー 箱星箱星
提出日時 2022-04-24 23:21:43
言語 Kotlin
(1.9.23)
結果
RE  
実行時間 -
コード長 302 bytes
コンパイル時間 11,511 ms
コンパイル使用メモリ 427,560 KB
実行使用メモリ 73,908 KB
最終ジャッジ日時 2024-09-20 03:04:17
合計ジャッジ時間 28,963 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 297 ms
56,876 KB
testcase_01 AC 296 ms
56,860 KB
testcase_02 AC 296 ms
56,956 KB
testcase_03 AC 298 ms
56,984 KB
testcase_04 AC 292 ms
56,876 KB
testcase_05 AC 296 ms
56,996 KB
testcase_06 RE -
testcase_07 AC 296 ms
56,884 KB
testcase_08 AC 293 ms
56,884 KB
testcase_09 AC 305 ms
56,900 KB
testcase_10 RE -
testcase_11 AC 316 ms
56,968 KB
testcase_12 AC 307 ms
56,888 KB
testcase_13 AC 494 ms
65,340 KB
testcase_14 AC 474 ms
63,688 KB
testcase_15 AC 467 ms
61,600 KB
testcase_16 AC 481 ms
63,568 KB
testcase_17 AC 527 ms
67,800 KB
testcase_18 AC 468 ms
61,588 KB
testcase_19 AC 465 ms
61,620 KB
testcase_20 AC 480 ms
65,540 KB
testcase_21 AC 504 ms
69,624 KB
testcase_22 AC 486 ms
65,616 KB
testcase_23 AC 467 ms
63,420 KB
testcase_24 AC 504 ms
67,764 KB
testcase_25 AC 484 ms
65,732 KB
testcase_26 AC 499 ms
67,656 KB
testcase_27 AC 456 ms
61,436 KB
testcase_28 AC 507 ms
69,744 KB
testcase_29 AC 483 ms
65,452 KB
testcase_30 AC 497 ms
67,868 KB
testcase_31 AC 518 ms
71,856 KB
testcase_32 AC 519 ms
71,872 KB
testcase_33 AC 517 ms
71,660 KB
testcase_34 RE -
testcase_35 AC 523 ms
73,908 KB
testcase_36 AC 305 ms
56,980 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:9: warning: variable 'n' is never used
    val n = readInt()
        ^

ソースコード

diff #

fun main() {
    val n = readInt()
    val a = readInts()
    val inf = a.count { it == -1 }
    val xor = a.filter { it != -1 }.reduce(Int::xor)
    println(if (inf % 2 == 1 || xor != 0) "First" else "Second")
}

fun readInt() = readln().toInt()
fun readInts() = readln().split(" ").map { it.toInt() }
0