結果
問題 | No.7 プライムナンバーゲーム |
ユーザー | zombietan |
提出日時 | 2016-05-08 02:25:54 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 1,832 ms / 5,000 ms |
コード長 | 581 bytes |
コンパイル時間 | 85 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-10-01 15:45:43 |
合計ジャッジ時間 | 12,765 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,752 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | AC | 1,763 ms
10,880 KB |
testcase_03 | AC | 137 ms
10,752 KB |
testcase_04 | AC | 59 ms
10,752 KB |
testcase_05 | AC | 59 ms
10,752 KB |
testcase_06 | AC | 530 ms
10,752 KB |
testcase_07 | AC | 375 ms
10,880 KB |
testcase_08 | AC | 181 ms
10,752 KB |
testcase_09 | AC | 784 ms
10,752 KB |
testcase_10 | AC | 28 ms
10,752 KB |
testcase_11 | AC | 356 ms
10,752 KB |
testcase_12 | AC | 1,244 ms
10,880 KB |
testcase_13 | AC | 1,350 ms
10,880 KB |
testcase_14 | AC | 1,832 ms
10,880 KB |
testcase_15 | AC | 1,657 ms
10,880 KB |
testcase_16 | AC | 1,578 ms
11,008 KB |
ソースコード
N = int(input()) def primes(): n = 2 p = [] while True: if not any( n % f == 0 for f in p ): yield(n) p.append( n ) n += 1 p = primes() r = [] while True: d = next(p) if d <= N: r.append(d) else: break memo = ['']*(N+1) memo[0] = 'Win' memo[1] = 'Win' for i in range(2, N+1): c = set() for s in r: if s <= i: h = memo[i-s] c.add(h) else: break if 'Lose' in c: memo[i] = 'Win' else: memo[i] = 'Lose' print(memo[N])