結果

問題 No.1208 anti primenumber game
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-11 22:37:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 331 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 109,088 KB
最終ジャッジ日時 2024-07-18 09:53:55
合計ジャッジ時間 4,465 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,724 KB
testcase_01 AC 33 ms
53,416 KB
testcase_02 AC 34 ms
52,444 KB
testcase_03 AC 32 ms
53,224 KB
testcase_04 AC 31 ms
52,888 KB
testcase_05 AC 32 ms
52,268 KB
testcase_06 AC 33 ms
53,292 KB
testcase_07 AC 31 ms
52,940 KB
testcase_08 AC 34 ms
51,872 KB
testcase_09 AC 31 ms
52,200 KB
testcase_10 AC 33 ms
52,572 KB
testcase_11 AC 35 ms
53,508 KB
testcase_12 AC 32 ms
52,364 KB
testcase_13 AC 32 ms
51,692 KB
testcase_14 AC 32 ms
52,020 KB
testcase_15 AC 66 ms
99,104 KB
testcase_16 AC 67 ms
98,752 KB
testcase_17 AC 67 ms
98,960 KB
testcase_18 AC 68 ms
98,828 KB
testcase_19 AC 69 ms
98,700 KB
testcase_20 AC 68 ms
98,464 KB
testcase_21 AC 72 ms
100,840 KB
testcase_22 AC 73 ms
100,996 KB
testcase_23 AC 72 ms
101,108 KB
testcase_24 AC 92 ms
102,560 KB
testcase_25 AC 93 ms
102,292 KB
testcase_26 AC 90 ms
101,120 KB
testcase_27 AC 90 ms
101,312 KB
testcase_28 AC 90 ms
101,444 KB
testcase_29 AC 89 ms
100,760 KB
testcase_30 AC 68 ms
101,508 KB
testcase_31 AC 69 ms
99,924 KB
testcase_32 AC 69 ms
101,200 KB
testcase_33 AC 73 ms
101,928 KB
testcase_34 AC 70 ms
99,104 KB
testcase_35 AC 69 ms
100,340 KB
testcase_36 AC 62 ms
91,696 KB
testcase_37 AC 68 ms
98,756 KB
testcase_38 AC 87 ms
109,088 KB
testcase_39 AC 87 ms
108,716 KB
testcase_40 AC 91 ms
100,680 KB
testcase_41 AC 71 ms
101,372 KB
testcase_42 AC 72 ms
102,076 KB
testcase_43 AC 73 ms
101,476 KB
testcase_44 AC 75 ms
102,484 KB
testcase_45 AC 77 ms
103,128 KB
testcase_46 AC 72 ms
97,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = list(map(int, input().split()))
inf = 10 ** 18

dp = [-inf] * (N + 1)
dp[0] = 0
A.reverse()
for i, a in enumerate(A, 1):
    dp[i] = max(dp[i], a - M - dp[i - 1])
    if a > 1:
        dp[i] = max(dp[i], (a - 1) + (M - 1) + dp[i - 1])

if dp[N] > 0:
    print("First")
else:
    print("Second")
0