結果

問題 No.7 プライムナンバーゲーム
ユーザー kwnwsdnckwnwsdnc
提出日時 2018-03-30 23:51:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,186 ms / 5,000 ms
コード長 742 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 261,760 KB
最終ジャッジ日時 2024-10-01 16:10:48
合計ジャッジ時間 9,155 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
10,496 KB
testcase_01 AC 59 ms
10,624 KB
testcase_02 AC 1,173 ms
261,760 KB
testcase_03 AC 126 ms
24,576 KB
testcase_04 AC 75 ms
13,440 KB
testcase_05 AC 74 ms
13,568 KB
testcase_06 AC 386 ms
80,896 KB
testcase_07 AC 269 ms
56,960 KB
testcase_08 AC 151 ms
30,208 KB
testcase_09 AC 537 ms
119,168 KB
testcase_10 AC 59 ms
10,496 KB
testcase_11 AC 272 ms
57,344 KB
testcase_12 AC 839 ms
189,184 KB
testcase_13 AC 894 ms
200,704 KB
testcase_14 AC 1,186 ms
260,864 KB
testcase_15 AC 1,109 ms
248,320 KB
testcase_16 AC 1,040 ms
229,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

prime=[]
for i in range(2,10000):
    judge=0
    for j in range(2,100):
        if i==j:
            break
        if i%j==0 :
            judge+=1
            break
    if judge==0:
        prime.append(i)
        
def minus(n):
    Q=[[] for i in range(n+10)]
    judge=[1 for i in range(n+10)]
    judge[2]=-1
    judge[3]=-1
    for i in range(2,n+1):
        count=0
        for p in prime:
            if i-p<=1:
                break
            else:
                Q[i].append(i-p)
        for q in Q[i]:
            if judge[q]==-1:
                count+=1
        if count==0:
            judge[i]=-1
    if judge[n]==-1:
        return "Lose"
    else:
        return "Win"
                
    
N=int(input())
print(minus(N))
0