結果

問題 No.361 門松ゲーム2
ユーザー fumofumofunifumofumofuni
提出日時 2021-09-14 02:32:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 428 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 76,224 KB
最終ジャッジ日時 2024-06-26 04:46:37
合計ジャッジ時間 6,054 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 43 ms
52,608 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 41 ms
52,224 KB
testcase_07 AC 43 ms
52,224 KB
testcase_08 AC 69 ms
68,992 KB
testcase_09 AC 70 ms
69,504 KB
testcase_10 AC 67 ms
69,248 KB
testcase_11 AC 57 ms
63,872 KB
testcase_12 AC 69 ms
68,992 KB
testcase_13 AC 68 ms
69,356 KB
testcase_14 AC 266 ms
75,904 KB
testcase_15 AC 95 ms
71,168 KB
testcase_16 AC 339 ms
75,776 KB
testcase_17 AC 303 ms
75,840 KB
testcase_18 AC 98 ms
71,936 KB
testcase_19 AC 314 ms
75,912 KB
testcase_20 AC 85 ms
70,656 KB
testcase_21 AC 310 ms
75,968 KB
testcase_22 AC 428 ms
75,820 KB
testcase_23 AC 225 ms
76,032 KB
testcase_24 AC 347 ms
75,964 KB
testcase_25 AC 367 ms
75,776 KB
testcase_26 AC 374 ms
76,224 KB
testcase_27 AC 376 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L,D=map(int,input().split())
dp=[0]*(L+1)
for i in range(1,L+1):
    st={10000}
    for j in range(1,i):
        for k in range(1,j):
            l=i-j-k
            if l==j or l==k:
                continue
            if l<=0:
                continue
            if max(j,k,l)-min(j,k,l)>D:
                continue
            st.add(dp[j]^dp[k]^dp[l])
    lt=list(st)
    list.sort(lt)
    for j in range(len(lt)):
        if lt[j]!=j:
            dp[i]=j
            break
if dp[L]:
    print('kado')
else :
    print('matsu')
0