結果

問題 No.8 N言っちゃダメゲーム
ユーザー miztommiztom
提出日時 2024-03-12 15:31:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 362 ms / 5,000 ms
コード長 215 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 219,136 KB
最終ジャッジ日時 2024-09-29 22:20:28
合計ジャッジ時間 3,025 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 229 ms
146,688 KB
testcase_04 AC 362 ms
219,136 KB
testcase_05 AC 331 ms
215,808 KB
testcase_06 AC 164 ms
115,200 KB
testcase_07 AC 169 ms
122,112 KB
testcase_08 AC 188 ms
132,096 KB
testcase_09 AC 193 ms
133,760 KB
testcase_10 AC 204 ms
139,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for i in range(int(input())):
    n,k=map(int,input().split())
    dp=[0]*n
    c=0
    for i in range(n):
        x=c<min(i,k)
        dp[i]=x
        c+=x
        if i>=k:c-=dp[i-k]
    print("LWoisne"[dp[-1]::2])
0