結果

問題 No.1007 コイン集め
ユーザー roarisroaris
提出日時 2020-03-13 12:49:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 1,500 ms
コード長 407 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 84,100 KB
最終ジャッジ日時 2024-11-21 22:24:53
合計ジャッジ時間 2,687 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,784 KB
testcase_01 AC 40 ms
52,796 KB
testcase_02 AC 40 ms
52,212 KB
testcase_03 AC 39 ms
52,416 KB
testcase_04 AC 40 ms
51,804 KB
testcase_05 AC 39 ms
51,804 KB
testcase_06 AC 39 ms
51,796 KB
testcase_07 AC 43 ms
52,016 KB
testcase_08 AC 40 ms
51,940 KB
testcase_09 AC 39 ms
52,500 KB
testcase_10 AC 40 ms
52,200 KB
testcase_11 AC 39 ms
52,480 KB
testcase_12 AC 67 ms
83,648 KB
testcase_13 AC 67 ms
83,280 KB
testcase_14 AC 67 ms
83,368 KB
testcase_15 AC 57 ms
76,680 KB
testcase_16 AC 58 ms
76,808 KB
testcase_17 AC 58 ms
76,248 KB
testcase_18 AC 66 ms
83,892 KB
testcase_19 AC 67 ms
82,708 KB
testcase_20 AC 67 ms
84,100 KB
testcase_21 AC 67 ms
83,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

for i in range(K+1, N):
    if A[i]<=1:
        r = i
        break
else:
    r = N-1

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

if A[K]==0:
    print(0)
elif A[K]==1:
    print(max(sum(A[l:K+1]), sum(A[K:r+1])))
else:
    print(sum(A[l:r+1]))
0