結果

問題 No.1208 anti primenumber game
ユーザー 37zigen37zigen
提出日時 2020-08-30 14:47:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 405 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,928 KB
最終ジャッジ日時 2024-11-15 07:55:05
合計ジャッジ時間 12,195 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 28 ms
10,880 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 30 ms
10,624 KB
testcase_15 AC 194 ms
14,736 KB
testcase_16 AC 195 ms
14,732 KB
testcase_17 AC 197 ms
14,732 KB
testcase_18 AC 193 ms
14,608 KB
testcase_19 AC 213 ms
18,828 KB
testcase_20 AC 205 ms
17,292 KB
testcase_21 AC 321 ms
20,036 KB
testcase_22 AC 315 ms
19,916 KB
testcase_23 AC 269 ms
20,492 KB
testcase_24 AC 397 ms
33,928 KB
testcase_25 AC 403 ms
33,732 KB
testcase_26 AC 401 ms
33,520 KB
testcase_27 AC 405 ms
33,656 KB
testcase_28 AC 403 ms
32,680 KB
testcase_29 AC 404 ms
33,648 KB
testcase_30 AC 215 ms
20,748 KB
testcase_31 AC 219 ms
22,008 KB
testcase_32 AC 212 ms
20,368 KB
testcase_33 AC 294 ms
22,412 KB
testcase_34 AC 301 ms
14,732 KB
testcase_35 AC 305 ms
14,732 KB
testcase_36 AC 268 ms
18,092 KB
testcase_37 AC 369 ms
23,440 KB
testcase_38 AC 344 ms
27,376 KB
testcase_39 AC 342 ms
27,440 KB
testcase_40 AC 394 ms
32,808 KB
testcase_41 AC 239 ms
22,932 KB
testcase_42 AC 321 ms
23,268 KB
testcase_43 AC 319 ms
23,276 KB
testcase_44 AC 285 ms
22,760 KB
testcase_45 AC 288 ms
22,740 KB
testcase_46 AC 269 ms
21,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))
dp=[-10**20]*(N+1)
dp[N]=0
for i in range(N-1,-1,-1):
    dp[i]=max(dp[i],A[i]-M-dp[i+1]) # 全部取る
    if A[i]>1:
        dp[i]=max(dp[i],A[i]-1-(1-M)+dp[i+1]) # 1つ残す
if dp[0]>0:
    print("First")
else:
    print("Second")
0