結果

問題 No.361 門松ゲーム2
ユーザー gr1msl3ygr1msl3y
提出日時 2022-01-29 13:45:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 414 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 153,572 KB
最終ジャッジ日時 2025-01-01 23:46:04
合計ジャッジ時間 36,792 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,372 KB
testcase_01 AC 38 ms
130,728 KB
testcase_02 AC 42 ms
65,872 KB
testcase_03 AC 41 ms
136,056 KB
testcase_04 AC 38 ms
59,088 KB
testcase_05 AC 37 ms
130,048 KB
testcase_06 AC 42 ms
65,932 KB
testcase_07 AC 46 ms
137,868 KB
testcase_08 AC 91 ms
83,120 KB
testcase_09 AC 95 ms
153,572 KB
testcase_10 AC 81 ms
83,408 KB
testcase_11 AC 55 ms
80,560 KB
testcase_12 AC 82 ms
83,180 KB
testcase_13 AC 80 ms
153,216 KB
testcase_14 TLE -
testcase_15 AC 432 ms
152,968 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 534 ms
83,548 KB
testcase_19 TLE -
testcase_20 AC 260 ms
76,568 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

L, D = map(int, input().split())
gr = [-1]*(L+1)
for i in range(1, L+1):
    S = set()
    for j in range(1, i):
        for k in range(1, i-j):
            l = i-j-k
            T = {j, k, l}
            if len(T) == 3 and max(T)-min(T) <= D:
                S.add(gr[j] ^ gr[k] ^ gr[l])
    for j in range(i+1):
        if j not in S:
            gr[i] = j
            break

print('kado' if gr[L] else 'matsu')
0