結果

問題 No.7 プライムナンバーゲーム
ユーザー colognecologne
提出日時 2022-01-20 15:34:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 5,000 ms
コード長 612 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 68,816 KB
最終ジャッジ日時 2024-10-01 16:45:47
合計ジャッジ時間 1,957 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
63,392 KB
testcase_01 AC 51 ms
62,816 KB
testcase_02 AC 61 ms
68,468 KB
testcase_03 AC 56 ms
66,292 KB
testcase_04 AC 56 ms
65,320 KB
testcase_05 AC 57 ms
66,036 KB
testcase_06 AC 60 ms
68,208 KB
testcase_07 AC 57 ms
67,788 KB
testcase_08 AC 57 ms
67,916 KB
testcase_09 AC 58 ms
68,448 KB
testcase_10 AC 47 ms
64,356 KB
testcase_11 AC 56 ms
67,032 KB
testcase_12 AC 58 ms
68,816 KB
testcase_13 AC 59 ms
68,352 KB
testcase_14 AC 61 ms
67,596 KB
testcase_15 AC 63 ms
67,968 KB
testcase_16 AC 62 ms
67,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from re import L
import sys
import itertools

input = sys.stdin.readline


def main():
    N = int(input())

    sieve = [True] * (N+1)

    primes = []

    for i in range(2, N+1):
        if sieve[i]:
            primes.append(i)
            for j in range(i*i, N+1, i):
                sieve[j] = False

    DP = [False]*(N+1)
    DP[0] = DP[1] = True

    for i in range(2, N+1):
        for j in primes:
            if j > i:
                break
            if not DP[i-j]:
                DP[i] = True
                break

    print('Win' if DP[-1] else 'Lose')


if __name__ == '__main__':
    main()
0