結果

問題 No.7 プライムナンバーゲーム
ユーザー halshiphalship
提出日時 2021-06-04 20:33:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,062 ms / 5,000 ms
コード長 584 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-10-01 16:44:10
合計ジャッジ時間 8,499 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 1,062 ms
10,752 KB
testcase_03 AC 104 ms
10,752 KB
testcase_04 AC 45 ms
10,624 KB
testcase_05 AC 44 ms
10,624 KB
testcase_06 AC 336 ms
10,624 KB
testcase_07 AC 231 ms
10,624 KB
testcase_08 AC 122 ms
10,624 KB
testcase_09 AC 506 ms
10,752 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 242 ms
10,624 KB
testcase_12 AC 803 ms
10,880 KB
testcase_13 AC 855 ms
10,752 KB
testcase_14 AC 1,058 ms
10,752 KB
testcase_15 AC 905 ms
10,752 KB
testcase_16 AC 985 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def get_primes(n):
    numbers = [True for _ in range(n + 1)]
    numbers[0] = False
    numbers[1] = False
    result = []

    for i in range(2, n + 1):
        if numbers[i]:
            result.append(i)
            for j in range(i * 2, n + 1, i):
                numbers[j] = False

    return result


n = int(input())
primes = get_primes(n)
dp = [False] * (n + 1)
dp[0] = True
dp[1] = True

for i in range(2, n + 1):
    for x in primes:
        if x > i:
            break
        if not dp[i - x]:
            dp[i] = True

if dp[n]:
    print('Win')
else:
    print('Lose')
0