結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | Hydru |
提出日時 | 2023-01-15 20:53:01 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 68 ms / 5,000 ms |
コード長 | 640 bytes |
コンパイル時間 | 849 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 63,872 KB |
最終ジャッジ日時 | 2024-06-09 08:26:01 |
合計ジャッジ時間 | 2,629 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
51,968 KB |
testcase_01 | AC | 41 ms
51,712 KB |
testcase_02 | AC | 68 ms
63,744 KB |
testcase_03 | AC | 57 ms
61,696 KB |
testcase_04 | AC | 52 ms
60,288 KB |
testcase_05 | AC | 53 ms
60,160 KB |
testcase_06 | AC | 60 ms
62,720 KB |
testcase_07 | AC | 59 ms
62,464 KB |
testcase_08 | AC | 56 ms
61,824 KB |
testcase_09 | AC | 61 ms
62,848 KB |
testcase_10 | AC | 40 ms
51,968 KB |
testcase_11 | AC | 59 ms
62,336 KB |
testcase_12 | AC | 63 ms
63,360 KB |
testcase_13 | AC | 65 ms
63,616 KB |
testcase_14 | AC | 66 ms
63,872 KB |
testcase_15 | AC | 66 ms
63,616 KB |
testcase_16 | AC | 65 ms
63,232 KB |
ソースコード
n=int(input()) # nまでの素数を要素にもつ集合を返す関数 def eratosthenes(n): primes=set(range(2,n+1)) for i in range(2,n): if i in primes: it = i ** 2 while it <= n: if it in primes: primes.remove(it) it += i return primes P=sorted(list(eratosthenes(n))) flag=[-1 for _ in range(n+1)] flag[0]=1 flag[1]=1 for i in range(2,n+1): key=0 for p in P: if p>i: break if flag[i-p]==0: key=1 break flag[i]=key if flag[n]==1: print("Win") else: print("Lose")