結果

問題 No.1007 コイン集め
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-06 23:58:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 1,500 ms
コード長 552 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 81,756 KB
実行使用メモリ 89,608 KB
最終ジャッジ日時 2024-10-14 10:14:41
合計ジャッジ時間 2,268 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,676 KB
testcase_01 AC 35 ms
51,960 KB
testcase_02 AC 36 ms
52,332 KB
testcase_03 AC 35 ms
52,164 KB
testcase_04 AC 35 ms
52,432 KB
testcase_05 AC 35 ms
53,248 KB
testcase_06 AC 37 ms
52,980 KB
testcase_07 AC 36 ms
52,288 KB
testcase_08 AC 38 ms
52,240 KB
testcase_09 AC 35 ms
53,124 KB
testcase_10 AC 36 ms
52,088 KB
testcase_11 AC 37 ms
52,112 KB
testcase_12 AC 66 ms
87,760 KB
testcase_13 AC 67 ms
89,556 KB
testcase_14 AC 66 ms
88,296 KB
testcase_15 AC 63 ms
84,060 KB
testcase_16 AC 66 ms
85,140 KB
testcase_17 AC 66 ms
84,172 KB
testcase_18 AC 65 ms
88,536 KB
testcase_19 AC 61 ms
83,556 KB
testcase_20 AC 65 ms
88,928 KB
testcase_21 AC 66 ms
89,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))

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

A = [0] + A + [0]
#print(A)

for i in range(k):
    if A[i] == 0:
        p = i
        q = 0
    elif A[i] == 1:
        p = i
        q = 1

for i in reversed(range(k+1, n+2)):
    if A[i] == 0:
        r = i
        s = 0
    elif A[i] == 1:
        r = i
        s = 1

if A[k] >= 2:
    #print(p, q, r, s)
    ans = sum(A[p:k])+A[k]+sum(A[k+1:r+1])
    print(ans)
else:
    ans = max(sum(A[p:k]), sum(A[k+1:r+1])) + A[k]
    print(ans)
0