結果

問題 No.1007 コイン集め
ユーザー rlangevinrlangevin
提出日時 2023-01-19 20:04:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 1,500 ms
コード長 447 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 84,672 KB
最終ジャッジ日時 2024-06-22 09:44:53
合計ジャッジ時間 2,472 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,284 KB
testcase_01 AC 34 ms
53,096 KB
testcase_02 AC 33 ms
53,744 KB
testcase_03 AC 33 ms
52,076 KB
testcase_04 AC 33 ms
52,464 KB
testcase_05 AC 33 ms
52,552 KB
testcase_06 AC 34 ms
52,872 KB
testcase_07 AC 34 ms
52,484 KB
testcase_08 AC 34 ms
52,428 KB
testcase_09 AC 38 ms
51,752 KB
testcase_10 AC 34 ms
52,276 KB
testcase_11 AC 34 ms
52,520 KB
testcase_12 AC 61 ms
84,588 KB
testcase_13 AC 60 ms
84,672 KB
testcase_14 AC 61 ms
84,604 KB
testcase_15 AC 50 ms
77,880 KB
testcase_16 AC 51 ms
76,328 KB
testcase_17 AC 50 ms
77,636 KB
testcase_18 AC 60 ms
84,544 KB
testcase_19 AC 60 ms
84,580 KB
testcase_20 AC 62 ms
84,212 KB
testcase_21 AC 60 ms
83,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
left, right = 0, N
K -= 1
for i in range(K - 1, -1, -1):
    if A[i] <= 1:
        left = i
        break
for i in range(K + 1, N):
    if A[i] <= 1:
        right = i + 1
        break
L, R = 0, 0
for i in range(left, K):
    L += A[i]
for i in range(K + 1, right):
    R += A[i]
if A[K] == 0:
    print(0)
elif A[K] == 1:
    print(max(L, R) + 1)
else:
    print(L + R + A[K])
0