結果

問題 No.1007 コイン集め
ユーザー yansi819yansi819
提出日時 2024-05-11 11:32:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 1,500 ms
コード長 580 bytes
コンパイル時間 419 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 85,248 KB
最終ジャッジ日時 2024-05-11 11:32:03
合計ジャッジ時間 2,734 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,520 KB
testcase_01 AC 37 ms
52,648 KB
testcase_02 AC 35 ms
53,372 KB
testcase_03 AC 37 ms
52,644 KB
testcase_04 AC 34 ms
52,228 KB
testcase_05 AC 35 ms
53,420 KB
testcase_06 AC 34 ms
53,140 KB
testcase_07 AC 33 ms
52,824 KB
testcase_08 AC 34 ms
53,480 KB
testcase_09 AC 34 ms
52,276 KB
testcase_10 AC 33 ms
53,452 KB
testcase_11 AC 38 ms
52,700 KB
testcase_12 AC 62 ms
84,808 KB
testcase_13 AC 59 ms
85,248 KB
testcase_14 AC 61 ms
84,740 KB
testcase_15 AC 50 ms
76,460 KB
testcase_16 AC 50 ms
76,708 KB
testcase_17 AC 51 ms
77,872 KB
testcase_18 AC 60 ms
84,120 KB
testcase_19 AC 57 ms
84,568 KB
testcase_20 AC 60 ms
84,584 KB
testcase_21 AC 60 ms
85,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))

if A[K - 1] == 0:
    print(0)
    exit()

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

#print(p, q)

if A[K - 1] > 1:
    ans = 0
    for i in range(p, q + 1):
        ans += A[i]
    print(ans)
else:
    ans1 = 0
    for i in range(p, K):
        ans1 += A[i]
    ans2 = 0
    for i in range(K - 1, q + 1):
        ans2 += A[i]
    print(max(ans1, ans2))
0