結果

問題 No.7 プライムナンバーゲーム
ユーザー kwnwsdnckwnwsdnc
提出日時 2018-03-30 18:56:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 776 bytes
コンパイル時間 1,023 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 78,464 KB
最終ジャッジ日時 2024-06-26 00:42:58
合計ジャッジ時間 6,486 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
10,880 KB
testcase_01 AC 46 ms
11,136 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 477 ms
77,952 KB
testcase_05 WA -
testcase_06 AC 480 ms
78,464 KB
testcase_07 AC 473 ms
78,080 KB
testcase_08 AC 254 ms
44,416 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 478 ms
78,080 KB
testcase_12 AC 476 ms
77,952 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 478 ms
78,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def game(N):
    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)


    Q=[[0]]
    have=[0 for i in range(20000)]
    for i in range(10000):
        for q in Q[i]:
            Q.append([])
            for p in prime:
                if  p+q>10000:
                    break
                if have[q+p]==0:
                    Q[i+1].append(q+p)
                    if p+q==N:
                        if i%2==0:
                            return "Win"
                        else:
                            return"Lose"

N=int(input())
print(game(N))
                
    
0