結果

問題 No.7 プライムナンバーゲーム
ユーザー yaoshimaxyaoshimax
提出日時 2015-02-09 16:46:31
言語 Python2
(2.7.18)
結果
AC  
実行時間 1,490 ms / 5,000 ms
コード長 687 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 6,912 KB
最終ジャッジ日時 2024-10-01 15:29:52
合計ジャッジ時間 10,763 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,816 KB
testcase_01 AC 12 ms
6,816 KB
testcase_02 AC 1,464 ms
6,820 KB
testcase_03 AC 105 ms
6,816 KB
testcase_04 AC 37 ms
6,820 KB
testcase_05 AC 36 ms
6,820 KB
testcase_06 AC 448 ms
6,820 KB
testcase_07 AC 301 ms
6,816 KB
testcase_08 AC 146 ms
6,820 KB
testcase_09 AC 676 ms
6,816 KB
testcase_10 AC 10 ms
6,820 KB
testcase_11 AC 302 ms
6,820 KB
testcase_12 AC 1,073 ms
6,816 KB
testcase_13 AC 1,124 ms
6,816 KB
testcase_14 AC 1,490 ms
6,820 KB
testcase_15 AC 1,395 ms
6,912 KB
testcase_16 AC 1,303 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(raw_input())
isPrime=[True for i in range(N+1)]
isPrime[0]=False
isPrime[1]=False
primes=[]
for i in range (N+1):
   if isPrime[i]:
      primes.append(i)
      for j in range(i+i,N+1,i):
         isPrime[j]=False

grundy=[-1 for i in range(N+1)]
grundy[0]=1
grundy[1]=1
for i in range(2,N+1):
   grundySet=set([])
   for p in primes:
      if i-p < 0:
         break
      grundySet.add(grundy[i-p])
   grundyList= list(grundySet)
   grundyList.sort()
   for v in range(len(grundyList)+1):
      #print v , ",",
      if v==len(grundyList) or grundyList[v]!= v:
         grundy[i]=v
         break
   #print grundy[i], " ",
if grundy[N] == 0:
   print "Lose"
else:
   print "Win"
0