結果

問題 No.7 プライムナンバーゲーム
ユーザー tnoda_tnoda_
提出日時 2015-07-29 18:44:11
言語 Python2
(2.7.18)
結果
AC  
実行時間 791 ms / 5,000 ms
コード長 392 bytes
コンパイル時間 48 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 7,040 KB
最終ジャッジ日時 2024-10-01 15:35:26
合計ジャッジ時間 14,693 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 775 ms
7,040 KB
testcase_01 AC 780 ms
7,040 KB
testcase_02 AC 779 ms
7,040 KB
testcase_03 AC 781 ms
7,040 KB
testcase_04 AC 782 ms
6,912 KB
testcase_05 AC 783 ms
7,040 KB
testcase_06 AC 779 ms
7,040 KB
testcase_07 AC 778 ms
7,040 KB
testcase_08 AC 785 ms
7,040 KB
testcase_09 AC 783 ms
6,912 KB
testcase_10 AC 777 ms
7,040 KB
testcase_11 AC 783 ms
6,912 KB
testcase_12 AC 780 ms
6,912 KB
testcase_13 AC 784 ms
7,040 KB
testcase_14 AC 782 ms
7,040 KB
testcase_15 AC 778 ms
7,040 KB
testcase_16 AC 791 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def is_prime(x):
    for i in range(2, x):
        if x % i == 0:
            return False
    return True

primes = [x for x in range(2, 10000) if is_prime(x)]
memo = [False] * 10010
for i in range(2, 10010):
    if memo[i]:
        continue
    for p in primes:
        if i + p > 10000:
            break
        memo[i+p] = True
if memo[input()]:
    print('Win')
else:
    print('Lose')
0