結果

問題 No.1007 コイン集め
ユーザー yansi819yansi819
提出日時 2024-05-11 11:27:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 562 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 85,828 KB
最終ジャッジ日時 2024-12-20 08:26:15
合計ジャッジ時間 2,899 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,996 KB
testcase_01 AC 38 ms
52,700 KB
testcase_02 AC 37 ms
52,344 KB
testcase_03 AC 39 ms
53,540 KB
testcase_04 AC 40 ms
52,460 KB
testcase_05 AC 39 ms
52,952 KB
testcase_06 AC 38 ms
52,488 KB
testcase_07 AC 37 ms
53,040 KB
testcase_08 AC 38 ms
51,940 KB
testcase_09 AC 42 ms
52,700 KB
testcase_10 WA -
testcase_11 AC 39 ms
52,188 KB
testcase_12 AC 67 ms
85,312 KB
testcase_13 AC 67 ms
84,428 KB
testcase_14 AC 66 ms
84,120 KB
testcase_15 AC 58 ms
77,228 KB
testcase_16 AC 58 ms
76,928 KB
testcase_17 AC 56 ms
77,772 KB
testcase_18 AC 67 ms
84,876 KB
testcase_19 AC 64 ms
83,328 KB
testcase_20 WA -
testcase_21 AC 66 ms
84,328 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

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, q + 1):
        ans2 += A[i]
    print(max(ans1, ans2))
0