結果

問題 No.2044 Infinite Nim
ユーザー 箱星箱星
提出日時 2022-04-24 23:35:03
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 530 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 12,655 ms
コンパイル使用メモリ 430,136 KB
実行使用メモリ 67,492 KB
最終ジャッジ日時 2024-10-09 06:00:50
合計ジャッジ時間 30,081 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
51,628 KB
testcase_01 AC 311 ms
51,660 KB
testcase_02 AC 302 ms
51,676 KB
testcase_03 AC 305 ms
51,712 KB
testcase_04 AC 314 ms
51,780 KB
testcase_05 AC 309 ms
51,736 KB
testcase_06 AC 309 ms
51,632 KB
testcase_07 AC 307 ms
51,828 KB
testcase_08 AC 307 ms
51,608 KB
testcase_09 AC 304 ms
51,628 KB
testcase_10 AC 307 ms
51,736 KB
testcase_11 AC 310 ms
51,588 KB
testcase_12 AC 303 ms
51,628 KB
testcase_13 AC 498 ms
60,068 KB
testcase_14 AC 480 ms
57,540 KB
testcase_15 AC 471 ms
56,672 KB
testcase_16 AC 485 ms
57,336 KB
testcase_17 AC 509 ms
62,136 KB
testcase_18 AC 470 ms
56,704 KB
testcase_19 AC 477 ms
56,820 KB
testcase_20 AC 491 ms
60,096 KB
testcase_21 AC 525 ms
62,964 KB
testcase_22 AC 488 ms
59,464 KB
testcase_23 AC 476 ms
57,820 KB
testcase_24 AC 505 ms
61,540 KB
testcase_25 AC 485 ms
59,444 KB
testcase_26 AC 500 ms
61,800 KB
testcase_27 AC 474 ms
57,176 KB
testcase_28 AC 515 ms
63,304 KB
testcase_29 AC 501 ms
59,928 KB
testcase_30 AC 500 ms
61,464 KB
testcase_31 AC 526 ms
65,448 KB
testcase_32 AC 530 ms
65,644 KB
testcase_33 AC 525 ms
65,460 KB
testcase_34 AC 493 ms
61,796 KB
testcase_35 AC 528 ms
67,492 KB
testcase_36 AC 313 ms
51,892 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 }.fold(0, Int::xor)
    println(if (inf % 2 == 1 || xor != 0) "First" else "Second")
}

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