結果

問題 No.361 門松ゲーム2
ユーザー gr1msl3ygr1msl3y
提出日時 2022-01-29 13:45:16
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 414 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 83,824 KB
最終ジャッジ日時 2024-06-10 11:42:02
合計ジャッジ時間 8,090 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,636 KB
testcase_01 AC 38 ms
52,340 KB
testcase_02 AC 40 ms
57,788 KB
testcase_03 AC 41 ms
57,944 KB
testcase_04 AC 37 ms
51,948 KB
testcase_05 AC 38 ms
52,068 KB
testcase_06 AC 43 ms
58,448 KB
testcase_07 AC 48 ms
60,312 KB
testcase_08 AC 87 ms
76,056 KB
testcase_09 AC 94 ms
75,724 KB
testcase_10 AC 79 ms
75,960 KB
testcase_11 AC 56 ms
72,460 KB
testcase_12 AC 81 ms
76,200 KB
testcase_13 AC 81 ms
76,064 KB
testcase_14 TLE -
testcase_15 AC 422 ms
76,180 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
権限があれば一括ダウンロードができます

ソースコード

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