結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 325 ms
60,300 KB
testcase_01 AC 325 ms
60,460 KB
testcase_02 AC 325 ms
60,304 KB
testcase_03 AC 1,122 ms
90,984 KB
testcase_04 AC 991 ms
90,984 KB
testcase_05 WA -
testcase_06 AC 1,069 ms
90,820 KB
testcase_07 AC 1,113 ms
90,832 KB
testcase_08 AC 1,055 ms
91,072 KB
testcase_09 WA -
testcase_10 AC 1,201 ms
91,016 KB
testcase_11 AC 329 ms
60,452 KB
testcase_12 AC 613 ms
90,236 KB
testcase_13 AC 1,012 ms
90,776 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 1,048 ms
90,876 KB
testcase_17 AC 1,112 ms
90,908 KB
testcase_18 AC 1,017 ms
90,692 KB
testcase_19 AC 929 ms
90,244 KB
testcase_20 AC 338 ms
60,584 KB
testcase_21 AC 824 ms
90,244 KB
testcase_22 AC 1,128 ms
90,896 KB
testcase_23 AC 1,014 ms
90,700 KB
testcase_24 WA -
testcase_25 AC 909 ms
90,852 KB
testcase_26 AC 1,135 ms
90,820 KB
testcase_27 AC 1,129 ms
90,820 KB
testcase_28 AC 959 ms
90,192 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 1,088 ms
90,900 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 1,032 ms
91,056 KB
testcase_37 AC 1,012 ms
90,860 KB
testcase_38 AC 948 ms
90,812 KB
testcase_39 WA -
testcase_40 AC 787 ms
89,912 KB
testcase_41 AC 1,094 ms
90,212 KB
testcase_42 WA -
testcase_43 AC 994 ms
90,400 KB
testcase_44 AC 971 ms
90,888 KB
testcase_45 AC 1,001 ms
90,732 KB
testcase_46 AC 1,035 ms
90,884 KB
testcase_47 AC 323 ms
60,384 KB
testcase_48 AC 323 ms
60,384 KB
testcase_49 AC 325 ms
60,608 KB
testcase_50 AC 324 ms
60,360 KB
testcase_51 WA -
testcase_52 AC 324 ms
60,208 KB
testcase_53 AC 320 ms
60,404 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