結果

問題 No.1007 コイン集め
ユーザー syunsukesyunsuke
提出日時 2020-09-14 23:17:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 1,500 ms
コード長 652 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 87,976 KB
最終ジャッジ日時 2024-06-22 01:00:27
合計ジャッジ時間 1,876 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
L=[0]+list(map(int,input().split()))+[0]

if L[K]==0:
    print(0)
    exit()
else:
    right=L[K]
    for r in range(K+1,10**9):
        if L[r]>1:
            right+=L[r]
        if L[r]==1:
            right+=1
            break
        if L[r]==0:
            break
    left=L[K]
    for l in range(1,10**9):
        if L[K-l]>1:
            left+=L[K-l]
        if L[K-l]==1:
            left+=1
            break
        if L[K-l]==0:
            break
    if L[K]==1:
        print(max(left,right))
        #print(left,right)
        #print(L)
    else:
        print(left+right-L[K])
        #print(left,right)
    
0