結果

問題 No.1208 anti primenumber game
ユーザー nebukuro09nebukuro09
提出日時 2020-08-30 14:16:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 524 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 382 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 60,112 KB
最終ジャッジ日時 2024-11-15 07:32:14
合計ジャッジ時間 16,643 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 29 ms
10,624 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 335 ms
50,212 KB
testcase_16 AC 309 ms
31,388 KB
testcase_17 AC 359 ms
50,212 KB
testcase_18 AC 299 ms
31,524 KB
testcase_19 AC 355 ms
53,364 KB
testcase_20 AC 364 ms
53,284 KB
testcase_21 AC 427 ms
43,548 KB
testcase_22 AC 460 ms
49,900 KB
testcase_23 AC 418 ms
50,088 KB
testcase_24 AC 492 ms
50,988 KB
testcase_25 AC 509 ms
51,020 KB
testcase_26 AC 517 ms
60,112 KB
testcase_27 AC 520 ms
60,108 KB
testcase_28 AC 507 ms
53,008 KB
testcase_29 AC 524 ms
60,112 KB
testcase_30 AC 364 ms
52,772 KB
testcase_31 AC 365 ms
53,288 KB
testcase_32 AC 364 ms
50,084 KB
testcase_33 AC 449 ms
53,028 KB
testcase_34 AC 460 ms
50,212 KB
testcase_35 AC 451 ms
50,084 KB
testcase_36 AC 327 ms
36,296 KB
testcase_37 AC 481 ms
53,268 KB
testcase_38 AC 470 ms
51,380 KB
testcase_39 AC 498 ms
57,992 KB
testcase_40 AC 505 ms
59,084 KB
testcase_41 AC 376 ms
54,060 KB
testcase_42 AC 462 ms
53,880 KB
testcase_43 AC 472 ms
53,380 KB
testcase_44 AC 449 ms
53,504 KB
testcase_45 AC 417 ms
47,208 KB
testcase_46 AC 374 ms
48,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = list(map(int, input().split()))

sm = [0 for _ in range(n+1)]
for i in range(n-1, -1, -1):
    sm[i] = sm[i+1] - m + a[i]

dp = [[0, 0] for i in range(n+1)]

for i in range(n-1, -1, -1):
    if a[i] == 1:
        dp[i][0] = dp[i+1][1] + 1 - m
    else:
        dp[i][0] = max(dp[i+1][0] + a[i] - 1, dp[i+1][1] + a[i] - m)
    dp[i][1] = sm[i] - dp[i][0]

print('First' if dp[0][0] > dp[0][1] else 'Second')
0