結果

問題 No.7 プライムナンバーゲーム
ユーザー hiro_hiro_hirophiro_hiro_hirop
提出日時 2018-06-04 23:49:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 771 ms / 5,000 ms
コード長 401 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-10-01 16:11:59
合計ジャッジ時間 5,968 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
10,624 KB
testcase_01 AC 24 ms
10,752 KB
testcase_02 AC 771 ms
11,008 KB
testcase_03 AC 61 ms
10,624 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 32 ms
10,624 KB
testcase_06 AC 217 ms
10,752 KB
testcase_07 AC 145 ms
10,752 KB
testcase_08 AC 82 ms
10,624 KB
testcase_09 AC 329 ms
10,752 KB
testcase_10 AC 25 ms
10,752 KB
testcase_11 AC 146 ms
10,880 KB
testcase_12 AC 534 ms
10,880 KB
testcase_13 AC 562 ms
11,008 KB
testcase_14 AC 758 ms
10,880 KB
testcase_15 AC 709 ms
11,008 KB
testcase_16 AC 643 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

prime_judge_lst = [1]*(n+1)
prime_set = {2}
for i in range(2,n+1):
    if prime_judge_lst[i] == 1:
        prime_set = prime_set|{i}
        for j in range(i*2, n+1, i):
            prime_judge_lst[j] = 0

lose_set = {2,3}
for i in range(4,n+1):
    if not(any([i-x in prime_set for x in lose_set])):
        lose_set = lose_set|{i}
        
print('Lose' if n in lose_set else 'Win')
0