結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | Tomoyarn |
提出日時 | 2023-01-04 09:21:08 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 812 bytes |
コンパイル時間 | 183 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 63,232 KB |
最終ジャッジ日時 | 2024-05-05 14:08:40 |
合計ジャッジ時間 | 1,640 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
51,584 KB |
testcase_01 | AC | 36 ms
51,712 KB |
testcase_02 | AC | 52 ms
62,592 KB |
testcase_03 | AC | 51 ms
62,336 KB |
testcase_04 | AC | 49 ms
61,824 KB |
testcase_05 | WA | - |
testcase_06 | AC | 52 ms
62,720 KB |
testcase_07 | AC | 51 ms
62,336 KB |
testcase_08 | AC | 51 ms
62,592 KB |
testcase_09 | WA | - |
testcase_10 | AC | 36 ms
52,096 KB |
testcase_11 | AC | 53 ms
62,208 KB |
testcase_12 | AC | 56 ms
62,336 KB |
testcase_13 | AC | 51 ms
62,464 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 50 ms
62,464 KB |
ソースコード
prm = [2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61, 67, 71, 73, 79, 83, 89, 97, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 211, 223, 227, 229, 233, 239, 241, 251, 257, 263, 269, 271, 277, 281, 283, 293, 307, 311, 313, 317, 331, 337, 347, 349, 353, 359, 367, 373, 379, 383, 389, 397, 401, 409, 419, 421, 431, 433, 439, 443, 449, 457, 461, 463, 467, 479, 487, 491, 499] N = int(input()) dp = [0] * (N + 1) for i in range(N + 1): dp[i] = True if N <= 10: print("Win") exit() for i in range(11, N + 1): winflag = False for p in prm: if p >= i: break elif dp[i - p] == False: winflag = True break dp[i] = winflag print("Win" if dp[i] else "Lose")