結果

問題 No.1208 anti primenumber game
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-23 16:26:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 876 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 322,024 KB
最終ジャッジ日時 2024-06-24 16:06:57
合計ジャッジ時間 18,699 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,664 KB
testcase_01 AC 39 ms
52,824 KB
testcase_02 AC 38 ms
52,392 KB
testcase_03 AC 37 ms
53,284 KB
testcase_04 AC 38 ms
53,844 KB
testcase_05 AC 37 ms
52,344 KB
testcase_06 AC 39 ms
52,888 KB
testcase_07 AC 39 ms
53,560 KB
testcase_08 AC 39 ms
52,808 KB
testcase_09 AC 39 ms
52,412 KB
testcase_10 AC 38 ms
52,900 KB
testcase_11 AC 39 ms
54,132 KB
testcase_12 AC 38 ms
52,396 KB
testcase_13 AC 38 ms
52,816 KB
testcase_14 AC 39 ms
53,236 KB
testcase_15 AC 523 ms
299,752 KB
testcase_16 AC 517 ms
299,804 KB
testcase_17 AC 514 ms
298,900 KB
testcase_18 AC 512 ms
299,520 KB
testcase_19 AC 524 ms
299,704 KB
testcase_20 AC 524 ms
299,112 KB
testcase_21 AC 813 ms
313,176 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 99 ms
101,004 KB
testcase_25 AC 100 ms
100,960 KB
testcase_26 AC 98 ms
99,456 KB
testcase_27 AC 98 ms
99,588 KB
testcase_28 AC 98 ms
99,460 KB
testcase_29 AC 100 ms
99,532 KB
testcase_30 AC 516 ms
300,064 KB
testcase_31 AC 511 ms
299,300 KB
testcase_32 AC 541 ms
303,116 KB
testcase_33 AC 760 ms
311,328 KB
testcase_34 AC 78 ms
100,772 KB
testcase_35 AC 79 ms
101,880 KB
testcase_36 AC 70 ms
91,840 KB
testcase_37 AC 78 ms
100,128 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 AC 835 ms
316,268 KB
testcase_43 WA -
testcase_44 AC 721 ms
308,852 KB
testcase_45 WA -
testcase_46 AC 657 ms
280,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)
def main1(n,m,a):
  if all(x>1 for x in a):return True
  memo={}
  def dp(a,i):
    # a[i:]以降だけ考えたとき、互いが最適に行動したときの、(順手の獲得点、逆手の獲得点)
    if i==n:return 0,0
    if (a[i],i) in memo:return memo[(a[i],i)]
    if a[i]==1:
      # 石一個取るしかない。
      x,y=dp(a,i+1)
      ret=[y+a[i]-m,x]
    else:
      # 石ai個取る
      x,y=dp(a,i+1)
      ret=[y+a[i]-m,x]
      # 石ai-1個取る
      tmp=a[i]
      a[i]=1
      x,y=dp(a,i+1)
      a[i]=tmp
      if ret[0]<y+a[i]-1:
        ret=[y+a[i]-1,x]
    memo[(a[i],i)]=ret
    return ret
  ret=dp(a,0)
  return ret[0]>ret[1]

if __name__=='__main__':
  n,m=map(int,input().split())
  a=list(map(int,input().split()))
  ret1=main1(n,m,a)
  if ret1:
    print("First")
  else:
    print("Second")
0