結果

問題 No.1208 anti primenumber game
ユーザー marroncastlemarroncastle
提出日時 2020-08-30 17:03:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,724 KB
最終ジャッジ日時 2024-11-15 12:45:53
合計ジャッジ時間 8,025 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 30 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 103 ms
14,052 KB
testcase_16 AC 104 ms
14,056 KB
testcase_17 AC 102 ms
14,036 KB
testcase_18 AC 104 ms
14,052 KB
testcase_19 AC 132 ms
16,980 KB
testcase_20 AC 124 ms
16,988 KB
testcase_21 AC 182 ms
20,076 KB
testcase_22 AC 179 ms
20,088 KB
testcase_23 AC 156 ms
19,924 KB
testcase_24 AC 247 ms
32,720 KB
testcase_25 AC 246 ms
32,720 KB
testcase_26 AC 252 ms
32,724 KB
testcase_27 AC 251 ms
32,720 KB
testcase_28 AC 246 ms
32,596 KB
testcase_29 AC 258 ms
32,724 KB
testcase_30 AC 121 ms
20,312 KB
testcase_31 AC 147 ms
21,592 KB
testcase_32 AC 121 ms
19,800 KB
testcase_33 AC 174 ms
22,100 KB
testcase_34 AC 166 ms
13,928 KB
testcase_35 AC 162 ms
13,932 KB
testcase_36 AC 150 ms
18,056 KB
testcase_37 AC 214 ms
23,124 KB
testcase_38 AC 222 ms
27,300 KB
testcase_39 AC 223 ms
27,496 KB
testcase_40 AC 251 ms
32,088 KB
testcase_41 AC 160 ms
22,416 KB
testcase_42 AC 193 ms
23,424 KB
testcase_43 AC 191 ms
23,180 KB
testcase_44 AC 174 ms
22,788 KB
testcase_45 AC 173 ms
22,636 KB
testcase_46 AC 170 ms
21,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
  N, M = map(int, input().split())
  A = list(map(int, input().split()))[::-1]
  first = [0]*N
  remain = A[0]-1-(1-M)
  get_all = A[0]-M
  if A[0]>1:
    if M==0:
      first[0] = get_all
    else:
      first[0] = remain
  else:
    first[0] = get_all
  for i in range(1,N):
    remain = A[i]-1-(1-M)
    get_all = A[i]-M
    if A[i]>1:
      first[i] = max(first[i-1]+remain,-first[i-1]+get_all)
    else:
      first[i] = -first[i-1]+get_all
  if first[-1]>0:
    return 'First'
  return 'Second'
print(solve())
0