結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,348 KB
testcase_01 AC 39 ms
52,608 KB
testcase_02 AC 40 ms
51,944 KB
testcase_03 AC 38 ms
52,268 KB
testcase_04 AC 37 ms
52,824 KB
testcase_05 AC 39 ms
53,912 KB
testcase_06 AC 39 ms
52,324 KB
testcase_07 AC 38 ms
52,236 KB
testcase_08 AC 40 ms
53,528 KB
testcase_09 AC 40 ms
53,416 KB
testcase_10 AC 39 ms
52,188 KB
testcase_11 AC 39 ms
52,508 KB
testcase_12 AC 69 ms
83,688 KB
testcase_13 AC 67 ms
84,364 KB
testcase_14 AC 66 ms
84,872 KB
testcase_15 AC 58 ms
77,596 KB
testcase_16 AC 58 ms
77,484 KB
testcase_17 AC 59 ms
76,880 KB
testcase_18 AC 67 ms
83,964 KB
testcase_19 AC 64 ms
83,400 KB
testcase_20 AC 67 ms
84,876 KB
testcase_21 AC 68 ms
85,592 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