結果

問題 No.7 プライムナンバーゲーム
ユーザー ABKZABKZ
提出日時 2021-11-03 21:34:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 511 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2024-10-01 16:45:08
合計ジャッジ時間 2,334 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 120 ms
76,160 KB
testcase_03 AC 53 ms
66,944 KB
testcase_04 AC 46 ms
62,080 KB
testcase_05 AC 51 ms
62,336 KB
testcase_06 AC 75 ms
75,520 KB
testcase_07 AC 64 ms
74,240 KB
testcase_08 AC 58 ms
68,352 KB
testcase_09 AC 85 ms
75,776 KB
testcase_10 AC 38 ms
51,712 KB
testcase_11 AC 66 ms
74,112 KB
testcase_12 AC 100 ms
75,648 KB
testcase_13 AC 106 ms
76,544 KB
testcase_14 AC 122 ms
76,288 KB
testcase_15 AC 117 ms
76,160 KB
testcase_16 AC 116 ms
76,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

nums = list(range(2, N+1))

primes = []
work = nums[:]
while len(work) > 0:
    head = work.pop(0)
    primes.append(head)
    work = list(filter(lambda x: x % head != 0, work))

win_nums = set()
while len(nums) > 0:
    head = nums.pop(0)
    for n in primes:
        win_num = n + head
        if win_num > N:
            break
        if not win_num in win_nums:
            win_nums.add(win_num)
            nums.remove(win_num)

if N in win_nums:
    print("Win")
else:
    print("Lose")
0