結果

問題 No.1208 anti primenumber game
ユーザー ああいいああいい
提出日時 2022-06-12 16:01:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 551 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 123,820 KB
最終ジャッジ日時 2024-09-23 04:04:52
合計ジャッジ時間 7,123 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,496 KB
testcase_01 AC 36 ms
52,644 KB
testcase_02 AC 36 ms
53,288 KB
testcase_03 AC 37 ms
52,880 KB
testcase_04 AC 37 ms
53,812 KB
testcase_05 AC 38 ms
52,632 KB
testcase_06 AC 37 ms
52,164 KB
testcase_07 AC 38 ms
52,708 KB
testcase_08 AC 37 ms
52,372 KB
testcase_09 AC 36 ms
52,944 KB
testcase_10 AC 37 ms
52,556 KB
testcase_11 AC 37 ms
52,176 KB
testcase_12 AC 37 ms
51,880 KB
testcase_13 AC 37 ms
52,484 KB
testcase_14 AC 37 ms
52,192 KB
testcase_15 AC 96 ms
111,260 KB
testcase_16 AC 97 ms
111,156 KB
testcase_17 AC 96 ms
111,272 KB
testcase_18 AC 97 ms
110,992 KB
testcase_19 AC 97 ms
111,216 KB
testcase_20 AC 97 ms
110,884 KB
testcase_21 AC 104 ms
110,904 KB
testcase_22 AC 105 ms
110,880 KB
testcase_23 AC 104 ms
111,032 KB
testcase_24 AC 144 ms
123,544 KB
testcase_25 AC 145 ms
123,820 KB
testcase_26 AC 147 ms
121,272 KB
testcase_27 AC 146 ms
120,956 KB
testcase_28 AC 145 ms
121,040 KB
testcase_29 AC 145 ms
121,148 KB
testcase_30 AC 98 ms
111,060 KB
testcase_31 AC 98 ms
110,888 KB
testcase_32 AC 104 ms
111,120 KB
testcase_33 AC 130 ms
110,900 KB
testcase_34 AC 100 ms
111,060 KB
testcase_35 AC 99 ms
111,068 KB
testcase_36 AC 94 ms
106,124 KB
testcase_37 AC 100 ms
111,080 KB
testcase_38 AC 138 ms
109,144 KB
testcase_39 AC 140 ms
109,136 KB
testcase_40 AC 149 ms
121,072 KB
testcase_41 AC 103 ms
110,748 KB
testcase_42 AC 131 ms
110,792 KB
testcase_43 AC 131 ms
110,832 KB
testcase_44 AC 132 ms
110,596 KB
testcase_45 AC 133 ms
110,732 KB
testcase_46 AC 106 ms
108,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
A = list(map(int,input().split()))

inf = 10 ** 20
dp = [[-inf] * 2 for _ in range(N)]
if A[-1] > 1:
    dp[-1][0] = max(A[-1] - 1 - 1 + M,A[-1] - M)
    dp[-1][1] = -dp[-1][0]
else:
    dp[-1][0] = 1 - M
    dp[-1][1] = M - 1
for i in range(N - 2,-1,-1):
    if A[i] > 1:
        dp[i][0] = max(A[i] - 1 - 1 + M + dp[i + 1][0],A[i] - M + dp[i + 1][1])
        dp[i][1] = -dp[i][0]
    else:
        dp[i][0] = A[i] - M + dp[i + 1][1]
        dp[i][1] = M - 1 + dp[i + 1][0]
print('First' if dp[0][0] > 0 else "Second")
0