結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,296 KB
testcase_01 AC 33 ms
53,196 KB
testcase_02 AC 33 ms
52,568 KB
testcase_03 AC 35 ms
52,300 KB
testcase_04 AC 40 ms
52,796 KB
testcase_05 AC 32 ms
52,488 KB
testcase_06 AC 33 ms
52,272 KB
testcase_07 AC 33 ms
53,296 KB
testcase_08 AC 33 ms
52,272 KB
testcase_09 AC 33 ms
52,080 KB
testcase_10 WA -
testcase_11 AC 33 ms
52,016 KB
testcase_12 AC 64 ms
85,596 KB
testcase_13 AC 62 ms
85,128 KB
testcase_14 AC 63 ms
85,452 KB
testcase_15 AC 53 ms
78,216 KB
testcase_16 AC 52 ms
76,704 KB
testcase_17 AC 52 ms
76,600 KB
testcase_18 AC 63 ms
84,328 KB
testcase_19 AC 60 ms
83,648 KB
testcase_20 WA -
testcase_21 AC 61 ms
84,868 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