結果

問題 No.361 門松ゲーム2
ユーザー lllllll88938494lllllll88938494
提出日時 2023-05-08 08:05:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 384 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,656 KB
実行使用メモリ 74,996 KB
最終ジャッジ日時 2024-11-25 03:10:20
合計ジャッジ時間 3,495 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,392 KB
testcase_01 WA -
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 36 ms
52,308 KB
testcase_04 AC 35 ms
52,416 KB
testcase_05 AC 34 ms
52,284 KB
testcase_06 AC 36 ms
52,808 KB
testcase_07 AC 36 ms
52,788 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 42 ms
61,348 KB
testcase_12 AC 48 ms
62,912 KB
testcase_13 WA -
testcase_14 AC 110 ms
70,984 KB
testcase_15 WA -
testcase_16 AC 143 ms
73,828 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 143 ms
72,972 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 161 ms
74,064 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 160 ms
73,988 KB
testcase_26 WA -
testcase_27 AC 159 ms
74,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,d = map(int,input().split())
g = [0]*(n+1)

for x in range(1,n+1):
    s = set()
    for i in range(1,x+1):
        for k in range(i+1,x+1):
            if i + k >= x:
                break
            t =x - (i + k)
            if i < t < k:
                s.add(g[i]^g[t]^g[k])
    t = 0
    while t in s:
        t += 1
    g[x] = t
    
print('kado' if g[n] != 0 else 'matsu' )
0