結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | 炭酸水 |
提出日時 | 2022-05-13 08:16:54 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 628 bytes |
コンパイル時間 | 225 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,136 KB |
最終ジャッジ日時 | 2024-07-21 04:44:41 |
合計ジャッジ時間 | 27,248 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,425 ms
11,008 KB |
testcase_01 | AC | 1,430 ms
10,880 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1,422 ms
10,752 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 1,372 ms
11,008 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 1,431 ms
11,008 KB |
testcase_14 | AC | 1,405 ms
11,008 KB |
testcase_15 | AC | 1,551 ms
10,880 KB |
testcase_16 | WA | - |
ソースコード
pn = [True for _ in range(10000)] pn[0] = False pn[1] = False for i in range(10000): if pn[i]: j = 2 while i * j <= 9999: pn[i * j] = False j += 1 pn_list = [] for i in range(10000): if pn[i]: pn_list.append(i) z = [0 for _ in range(10001)] z[2] = False z[3] = False for i in pn_list: if 2 + i <= 10000: z[2 + i] = True if 3 + i <= 10000: z[3 + i] = True for i in range(10001): for j in pn_list: if z[i] and i + j <= 10000 and z[i + j] == 0: z[i + j] = False if z[int(input())]: print("Win") else: print("Lose")