結果

問題 No.7 プライムナンバーゲーム
ユーザー konchanksukonchanksu
提出日時 2020-04-29 01:35:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 369 ms / 5,000 ms
コード長 557 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-10-01 16:32:58
合計ジャッジ時間 3,621 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 365 ms
11,136 KB
testcase_03 AC 47 ms
10,752 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 127 ms
10,880 KB
testcase_07 AC 98 ms
11,008 KB
testcase_08 AC 54 ms
10,624 KB
testcase_09 AC 178 ms
10,880 KB
testcase_10 AC 25 ms
10,624 KB
testcase_11 AC 91 ms
10,880 KB
testcase_12 AC 261 ms
11,136 KB
testcase_13 AC 276 ms
11,008 KB
testcase_14 AC 361 ms
11,136 KB
testcase_15 AC 369 ms
11,264 KB
testcase_16 AC 330 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

def prime_num(end):
    lists = [i for i in range(2, end + 1)]
    ans = []
    while True:
        if lists[0] > end ** 0.5:
            break
        ans.append(lists[0])
        lists = list(filter(lambda x:x % lists[0], lists))
        
    return ans + lists
    
dp = [False for i in range(N + 1)] 
prime = prime_num(N)
dp[0], dp[1] = True, True

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

print('Win' if dp[N] else 'Lose')
0