結果

問題 No.946 箱箱箱
ユーザー yudedakoyudedako
提出日時 2022-01-10 22:48:27
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,192 ms / 2,000 ms
コード長 565 bytes
コンパイル時間 12,509 ms
コンパイル使用メモリ 435,412 KB
実行使用メモリ 87,180 KB
最終ジャッジ日時 2024-04-26 20:26:16
合計ジャッジ時間 62,524 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 340 ms
55,348 KB
testcase_01 AC 349 ms
55,116 KB
testcase_02 AC 345 ms
55,140 KB
testcase_03 AC 1,114 ms
87,092 KB
testcase_04 AC 1,092 ms
87,044 KB
testcase_05 AC 341 ms
55,192 KB
testcase_06 AC 1,045 ms
86,716 KB
testcase_07 AC 1,080 ms
86,140 KB
testcase_08 AC 1,041 ms
86,372 KB
testcase_09 AC 767 ms
86,296 KB
testcase_10 AC 1,132 ms
87,160 KB
testcase_11 AC 349 ms
55,060 KB
testcase_12 AC 637 ms
86,204 KB
testcase_13 AC 1,048 ms
86,404 KB
testcase_14 AC 1,101 ms
86,488 KB
testcase_15 AC 1,180 ms
86,820 KB
testcase_16 AC 1,160 ms
87,176 KB
testcase_17 AC 1,157 ms
86,772 KB
testcase_18 AC 1,044 ms
87,104 KB
testcase_19 AC 951 ms
86,556 KB
testcase_20 AC 363 ms
55,360 KB
testcase_21 AC 866 ms
86,516 KB
testcase_22 AC 1,172 ms
86,748 KB
testcase_23 AC 1,109 ms
86,996 KB
testcase_24 AC 856 ms
86,408 KB
testcase_25 AC 974 ms
87,124 KB
testcase_26 AC 1,124 ms
86,828 KB
testcase_27 AC 1,192 ms
87,176 KB
testcase_28 AC 1,148 ms
87,024 KB
testcase_29 AC 1,091 ms
86,104 KB
testcase_30 AC 1,086 ms
86,928 KB
testcase_31 AC 1,043 ms
87,028 KB
testcase_32 AC 1,102 ms
87,120 KB
testcase_33 AC 1,169 ms
86,976 KB
testcase_34 AC 1,067 ms
86,908 KB
testcase_35 AC 1,038 ms
86,964 KB
testcase_36 AC 1,062 ms
86,836 KB
testcase_37 AC 1,118 ms
87,136 KB
testcase_38 AC 1,037 ms
87,132 KB
testcase_39 AC 1,141 ms
86,976 KB
testcase_40 AC 817 ms
86,660 KB
testcase_41 AC 1,175 ms
87,180 KB
testcase_42 AC 1,127 ms
86,836 KB
testcase_43 AC 1,089 ms
87,140 KB
testcase_44 AC 991 ms
87,100 KB
testcase_45 AC 1,045 ms
86,908 KB
testcase_46 AC 1,087 ms
87,056 KB
testcase_47 AC 337 ms
55,120 KB
testcase_48 AC 337 ms
55,320 KB
testcase_49 AC 346 ms
55,012 KB
testcase_50 AC 339 ms
55,424 KB
testcase_51 AC 339 ms
54,956 KB
testcase_52 AC 343 ms
55,192 KB
testcase_53 AC 337 ms
55,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val n = readLine()!!.trim().toInt()
    val box = List(n){ readLine()!!.trim().toInt()}.reversed()
    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