結果

問題 No.7 プライムナンバーゲーム
ユーザー gahougahou
提出日時 2016-11-02 14:12:05
言語 Python2
(2.7.18)
結果
AC  
実行時間 510 ms / 5,000 ms
コード長 420 bytes
コンパイル時間 122 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-01 15:50:07
合計ジャッジ時間 4,390 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,816 KB
testcase_01 AC 11 ms
6,820 KB
testcase_02 AC 510 ms
6,816 KB
testcase_03 AC 42 ms
6,816 KB
testcase_04 AC 19 ms
6,820 KB
testcase_05 AC 18 ms
6,816 KB
testcase_06 AC 156 ms
6,816 KB
testcase_07 AC 109 ms
6,820 KB
testcase_08 AC 55 ms
6,824 KB
testcase_09 AC 229 ms
6,816 KB
testcase_10 AC 11 ms
6,820 KB
testcase_11 AC 111 ms
6,820 KB
testcase_12 AC 365 ms
6,820 KB
testcase_13 AC 387 ms
6,820 KB
testcase_14 AC 502 ms
6,820 KB
testcase_15 AC 482 ms
6,816 KB
testcase_16 AC 441 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def primes(n):
  lst = [2]
  for i in xrange(3, n+1):
    for j in xrange(len(lst)):
      if i%lst[j]==0: break
      if i<=lst[j]**2:
        lst.append(i)
        break
  return lst

n = int(raw_input())
p = primes(n)
dp = [0] * (n+1)
dp[0]=1
dp[1]=1
for i in xrange(2, n+1):
  for j in xrange(len(p)):
    if i < p[j]: break
    if dp[i-p[j]]==0:
      dp[i]=1
      break
if dp[n]==0: print "Lose"
else: print "Win"
0