結果

問題 No.1007 コイン集め
ユーザー lloyzlloyz
提出日時 2022-06-28 22:27:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 317 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,632 KB
最終ジャッジ日時 2024-11-21 17:10:02
合計ジャッジ時間 2,663 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 29 ms
10,496 KB
testcase_09 WA -
testcase_10 AC 28 ms
10,624 KB
testcase_11 WA -
testcase_12 AC 85 ms
21,632 KB
testcase_13 AC 83 ms
21,508 KB
testcase_14 AC 81 ms
21,516 KB
testcase_15 AC 50 ms
13,056 KB
testcase_16 AC 50 ms
12,928 KB
testcase_17 AC 50 ms
12,928 KB
testcase_18 AC 83 ms
21,400 KB
testcase_19 AC 64 ms
21,396 KB
testcase_20 WA -
testcase_21 AC 75 ms
21,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

k -= 1
if A[k] == 0:
    print(0)
    exit()
l, r = k - 1, k + 1
while l >= 0:
    if A[l] <= 1:
        break
    l -= 1
if l == -1:
    l += 1
while r < n:
    if A[r] <= 1:
        break
    r += 1
if r == n:
    r -= 1

print(sum(A[l:r + 1]))
0