結果

問題 No.7 プライムナンバーゲーム
ユーザー AtamaokaCAtamaokaC
提出日時 2021-06-19 17:11:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 5,000 ms
コード長 670 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 63,360 KB
最終ジャッジ日時 2024-10-01 16:44:32
合計ジャッジ時間 1,931 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 59 ms
63,360 KB
testcase_03 AC 48 ms
61,824 KB
testcase_04 AC 45 ms
60,288 KB
testcase_05 AC 48 ms
60,288 KB
testcase_06 AC 49 ms
62,208 KB
testcase_07 AC 49 ms
61,824 KB
testcase_08 AC 51 ms
62,336 KB
testcase_09 AC 54 ms
62,848 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 AC 52 ms
62,208 KB
testcase_12 AC 57 ms
62,592 KB
testcase_13 AC 57 ms
62,336 KB
testcase_14 AC 60 ms
63,104 KB
testcase_15 AC 58 ms
62,720 KB
testcase_16 AC 57 ms
62,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def primes(N):
    P = []
    for i in range(2,N):
        sieve = 1
        for p in P:
            if p*p > i:
                break
            elif i % p == 0:
                sieve = 0
                break
        if sieve == 0:
            continue
        else:
            P.append(i)
    return P
inpl = lambda: list(map(int,input().split()))
N = int(input())
P = primes(N+1)
dp = [True, True]
for i in range(2, N+1):
    for p in P:
        if p >= i-1:
            dp.append(False)
            break
        elif not dp[i-p]:
            dp.append(True)
            break
    else:
        dp.append(False)
if dp[N]:
    print('Win')
else:
    print('Lose')
0