結果

問題 No.1007 コイン集め
ユーザー ttrttr
提出日時 2020-03-06 22:12:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 309 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,660 KB
最終ジャッジ日時 2024-10-14 07:20:16
合計ジャッジ時間 2,189 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 33 ms
10,624 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 28 ms
10,624 KB
testcase_09 WA -
testcase_10 AC 29 ms
10,624 KB
testcase_11 WA -
testcase_12 AC 100 ms
21,508 KB
testcase_13 AC 95 ms
21,640 KB
testcase_14 AC 98 ms
21,512 KB
testcase_15 AC 58 ms
13,080 KB
testcase_16 AC 57 ms
12,956 KB
testcase_17 AC 57 ms
12,956 KB
testcase_18 AC 96 ms
21,656 KB
testcase_19 AC 72 ms
21,660 KB
testcase_20 WA -
testcase_21 AC 82 ms
21,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int, input().split())
A = [int(a) for a in input().split()]

if A[K-1] > 0:
    ans = A[K-1]
    for i in range(K, N):
        ans += A[i]
        if A[i] < 2:
            break
    for i in range(K-2, -1, -1):
        ans += A[i]
        if A[i] < 2:
            break
else:
    ans = 0

print(ans)
0