結果

問題 No.1007 コイン集め
ユーザー hirakuhiraku
提出日時 2020-04-08 05:32:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 87 ms / 1,500 ms
コード長 391 bytes
コンパイル時間 386 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,676 KB
最終ジャッジ日時 2024-07-16 04:23:00
合計ジャッジ時間 2,147 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 85 ms
21,652 KB
testcase_13 AC 86 ms
21,656 KB
testcase_14 AC 85 ms
21,656 KB
testcase_15 AC 46 ms
13,096 KB
testcase_16 AC 47 ms
13,104 KB
testcase_17 AC 48 ms
13,100 KB
testcase_18 AC 86 ms
21,676 KB
testcase_19 AC 87 ms
21,676 KB
testcase_20 AC 85 ms
21,552 KB
testcase_21 AC 72 ms
21,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))

ans = 0

l = 0
if k - 2 >= 0:
  for i in range(k - 2, -1, -1):
    l += A[i]
    if A[i] <= 1:
      break

r = 0
if k < n:
  for i in range(k, n):
    r += A[i]
    if A[i] <= 1:
      break
      
if A[k - 1] == 0:
  ans = 0      
elif A[k - 1] == 1:
  ans = A[k -1] + max(l, r)
else:
  ans = A[k -1] + l + r
print(ans)
0