結果

問題 No.1007 コイン集め
ユーザー titiatitia
提出日時 2020-03-06 21:46:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 94 ms / 1,500 ms
コード長 570 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,736 KB
最終ジャッジ日時 2024-10-14 05:41:53
合計ジャッジ時間 2,134 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 92 ms
21,568 KB
testcase_13 AC 94 ms
21,732 KB
testcase_14 AC 93 ms
21,736 KB
testcase_15 AC 52 ms
12,908 KB
testcase_16 AC 53 ms
12,912 KB
testcase_17 AC 52 ms
12,912 KB
testcase_18 AC 92 ms
21,572 KB
testcase_19 AC 66 ms
21,568 KB
testcase_20 AC 90 ms
21,572 KB
testcase_21 AC 80 ms
21,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
    
N,K=map(int,input().split())
A=list(map(int,input().split()))

K-=1

if A[K]==0:
    print(0)
elif A[K]==1:
    A1=0
    for i in range(K+1,N):
        A1+=A[i]
        if A[i]<=1:
            break
    A2=0
    for i in range(K-1,-1,-1):
        A2+=A[i]
        if A[i]<=1:
            break
    print(max(A1,A2)+1)
else:
    ANS=A[K]
    for i in range(K+1,N):
        ANS+=A[i]
        if A[i]<=1:
            break
    for i in range(K-1,-1,-1):
        ANS+=A[i]
        if A[i]<=1:
            break
    print(ANS)
    
0