結果

問題 No.7 プライムナンバーゲーム
ユーザー tnodinotnodino
提出日時 2022-01-30 17:45:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 576 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 66,048 KB
最終ジャッジ日時 2024-10-01 16:46:20
合計ジャッジ時間 2,006 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,968 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 145 ms
66,048 KB
testcase_03 AC 51 ms
62,848 KB
testcase_04 AC 45 ms
61,440 KB
testcase_05 AC 44 ms
61,696 KB
testcase_06 AC 69 ms
63,872 KB
testcase_07 AC 63 ms
63,616 KB
testcase_08 AC 52 ms
63,104 KB
testcase_09 AC 82 ms
64,256 KB
testcase_10 AC 32 ms
52,092 KB
testcase_11 AC 60 ms
63,744 KB
testcase_12 AC 110 ms
64,512 KB
testcase_13 AC 106 ms
65,536 KB
testcase_14 AC 126 ms
65,536 KB
testcase_15 AC 119 ms
65,152 KB
testcase_16 AC 114 ms
65,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def SieveofEratosthenes(N):
    P = [0] * (N+1)
    for i in range(2,N+1):
        if P[i] == 0:
            k = i
            while k <= N:
                P[k] = i
                k += i
            P[i] = 0
    return P

N = int(input())
P = SieveofEratosthenes(N)
C = []
for i in range(2,N+1):
    if P[i] == 0:
        C.append(i)
M = len(C)
WL = ['Win'] * (N+1)
for i in range(2,N+1):
    S = set()
    for k in range(M):
        if i - C[k] >= 0:
            S.add(WL[i-C[k]])
        else:
            break
    if not 'Lose' in S:
        WL[i] = 'Lose'
print(WL[N])
0