結果

問題 No.946 箱箱箱
ユーザー yudedakoyudedako
提出日時 2022-01-10 22:48:27
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,145 ms / 2,000 ms
コード長 565 bytes
コンパイル時間 12,384 ms
コンパイル使用メモリ 437,728 KB
実行使用メモリ 91,056 KB
最終ジャッジ日時 2024-11-14 11:13:03
合計ジャッジ時間 59,787 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 319 ms
60,440 KB
testcase_01 AC 322 ms
60,272 KB
testcase_02 AC 324 ms
60,512 KB
testcase_03 AC 1,113 ms
90,888 KB
testcase_04 AC 974 ms
90,640 KB
testcase_05 AC 321 ms
60,312 KB
testcase_06 AC 1,029 ms
90,188 KB
testcase_07 AC 1,031 ms
90,076 KB
testcase_08 AC 1,008 ms
90,520 KB
testcase_09 AC 740 ms
90,280 KB
testcase_10 AC 1,087 ms
90,972 KB
testcase_11 AC 327 ms
60,420 KB
testcase_12 AC 613 ms
90,264 KB
testcase_13 AC 1,002 ms
90,824 KB
testcase_14 AC 1,054 ms
90,424 KB
testcase_15 AC 1,145 ms
90,988 KB
testcase_16 AC 1,092 ms
90,932 KB
testcase_17 AC 1,061 ms
90,844 KB
testcase_18 AC 1,004 ms
90,756 KB
testcase_19 AC 929 ms
90,300 KB
testcase_20 AC 347 ms
60,536 KB
testcase_21 AC 806 ms
90,244 KB
testcase_22 AC 1,130 ms
90,988 KB
testcase_23 AC 1,001 ms
90,728 KB
testcase_24 AC 837 ms
90,188 KB
testcase_25 AC 953 ms
90,860 KB
testcase_26 AC 1,102 ms
90,860 KB
testcase_27 AC 1,124 ms
90,788 KB
testcase_28 AC 1,108 ms
90,880 KB
testcase_29 AC 1,078 ms
90,940 KB
testcase_30 AC 1,042 ms
90,828 KB
testcase_31 AC 1,001 ms
90,700 KB
testcase_32 AC 1,033 ms
90,756 KB
testcase_33 AC 1,131 ms
90,872 KB
testcase_34 AC 1,026 ms
90,260 KB
testcase_35 AC 998 ms
90,832 KB
testcase_36 AC 971 ms
90,752 KB
testcase_37 AC 1,087 ms
90,948 KB
testcase_38 AC 984 ms
91,000 KB
testcase_39 AC 1,111 ms
90,896 KB
testcase_40 AC 813 ms
90,576 KB
testcase_41 AC 1,083 ms
90,816 KB
testcase_42 AC 1,076 ms
90,800 KB
testcase_43 AC 1,035 ms
90,896 KB
testcase_44 AC 984 ms
91,056 KB
testcase_45 AC 982 ms
90,692 KB
testcase_46 AC 1,020 ms
90,848 KB
testcase_47 AC 316 ms
60,292 KB
testcase_48 AC 319 ms
60,504 KB
testcase_49 AC 321 ms
60,312 KB
testcase_50 AC 324 ms
60,452 KB
testcase_51 AC 330 ms
60,348 KB
testcase_52 AC 322 ms
60,288 KB
testcase_53 AC 316 ms
60,392 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