結果
問題 | No.8 N言っちゃダメゲーム |
ユーザー | masumasumath1 |
提出日時 | 2019-12-01 18:19:42 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 811 bytes |
コンパイル時間 | 621 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 13,152 KB |
最終ジャッジ日時 | 2024-11-21 13:15:24 |
合計ジャッジ時間 | 3,810 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,752 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 31 ms
10,624 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
ソースコード
def judge(N,K): if K >= N: print("Win") return 1 #勝敗を記録するlistを0~Nまで作る(0は不使用) dp = ["" for _ in range(N+1)] dp[1] = "Lose" for i in range(1,N+1,K): if i%2 == 0: if i+K+1 <= N: dp[i:i+K] = [ "Win" for _ in range(K)] else: j = 1 while i+j <= N: dp[i+j] = "Win" j += 1 else: if i+K+1 <= N: dp[i:i+K] = [ "Lose" for _ in range(K)] else: j = 1 while i+j <= N: dp[i+j] = "Lose" j += 1 print(dp[N]) return 1 P = int(input()) for _ in range(P): n,k = map(int,input().split()) judge(n,k)