結果

問題 No.946 箱箱箱
ユーザー yudedakoyudedako
提出日時 2022-01-10 22:46:17
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 554 bytes
コンパイル時間 12,206 ms
コンパイル使用メモリ 438,876 KB
実行使用メモリ 91,120 KB
最終ジャッジ日時 2024-04-26 20:25:10
合計ジャッジ時間 62,624 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 334 ms
60,220 KB
testcase_01 AC 336 ms
60,492 KB
testcase_02 AC 333 ms
60,444 KB
testcase_03 AC 1,118 ms
90,932 KB
testcase_04 AC 1,015 ms
90,632 KB
testcase_05 WA -
testcase_06 AC 1,072 ms
90,748 KB
testcase_07 AC 1,145 ms
91,012 KB
testcase_08 AC 1,102 ms
90,656 KB
testcase_09 WA -
testcase_10 AC 1,185 ms
90,948 KB
testcase_11 AC 336 ms
60,416 KB
testcase_12 AC 619 ms
90,120 KB
testcase_13 AC 1,053 ms
90,644 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1,068 ms
90,856 KB
testcase_17 AC 1,145 ms
90,884 KB
testcase_18 AC 1,014 ms
90,536 KB
testcase_19 AC 970 ms
90,340 KB
testcase_20 AC 355 ms
60,676 KB
testcase_21 AC 847 ms
90,200 KB
testcase_22 AC 1,188 ms
90,856 KB
testcase_23 AC 1,038 ms
90,808 KB
testcase_24 WA -
testcase_25 AC 949 ms
90,828 KB
testcase_26 AC 1,186 ms
90,712 KB
testcase_27 AC 1,155 ms
90,896 KB
testcase_28 AC 982 ms
90,108 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 1,097 ms
91,120 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 1,045 ms
91,032 KB
testcase_37 AC 1,000 ms
90,544 KB
testcase_38 AC 994 ms
90,888 KB
testcase_39 WA -
testcase_40 AC 811 ms
89,576 KB
testcase_41 AC 1,083 ms
90,244 KB
testcase_42 WA -
testcase_43 AC 1,030 ms
90,328 KB
testcase_44 AC 960 ms
90,800 KB
testcase_45 AC 1,028 ms
90,536 KB
testcase_46 AC 1,064 ms
90,700 KB
testcase_47 AC 338 ms
60,308 KB
testcase_48 AC 331 ms
60,308 KB
testcase_49 AC 332 ms
60,336 KB
testcase_50 AC 338 ms
60,316 KB
testcase_51 WA -
testcase_52 AC 332 ms
60,432 KB
testcase_53 AC 332 ms
60,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val n = readLine()!!.trim().toInt()
    val box = List(n){ readLine()!!.trim().toInt()}
    val nim = IntArray(n)
    for (i in 0 until n) {
        val a = box[i]
        var x = a
        val list = mutableListOf<Int>()
        for (j in i - 1 downTo 0) {
            list.add(x xor nim[j])
            x = x xor box[j]
        }
        list.add(x)
        list.sort()
        nim[i] = list.indices.find { it != list[it] } ?: list.size
    }
    val winFirst = nim.last() != 0
    println(if (winFirst) "Takahashi" else "Takanashi")
}
0