結果

問題 No.1007 コイン集め
ユーザー H20H20
提出日時 2021-01-27 09:55:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 1,500 ms
コード長 436 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 85,628 KB
最終ジャッジ日時 2024-06-24 08:43:09
合計ジャッジ時間 2,619 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,688 KB
testcase_01 AC 41 ms
52,508 KB
testcase_02 AC 44 ms
52,396 KB
testcase_03 AC 43 ms
52,900 KB
testcase_04 AC 43 ms
53,816 KB
testcase_05 AC 41 ms
53,208 KB
testcase_06 AC 41 ms
52,072 KB
testcase_07 AC 43 ms
52,948 KB
testcase_08 AC 42 ms
52,464 KB
testcase_09 AC 42 ms
52,908 KB
testcase_10 AC 42 ms
52,388 KB
testcase_11 AC 42 ms
52,264 KB
testcase_12 AC 78 ms
85,628 KB
testcase_13 AC 78 ms
85,444 KB
testcase_14 AC 72 ms
85,044 KB
testcase_15 AC 61 ms
77,260 KB
testcase_16 AC 62 ms
77,816 KB
testcase_17 AC 65 ms
77,504 KB
testcase_18 AC 79 ms
85,108 KB
testcase_19 AC 74 ms
84,392 KB
testcase_20 AC 77 ms
85,500 KB
testcase_21 AC 72 ms
85,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int, input().split())
A = list(map(int, input().split())) 
r=K-1
l=K-1
if A[K-1]>=2:
    while l>=1 and A[l]>=2 and A[l-1]>=1:
        l-=1
    while r<N-1 and A[r]>=2 and A[r+1]>=1:
        r+=1
    print(sum(A[l:r+1]))
elif A[K-1]==0:
    print(0)
else:
    A[K-1]+=1
    while l>=1 and A[l]>=2 and A[l-1]>=1:
        l-=1
    while r<N-1 and A[r]>=2 and A[r+1]>=1:
        r+=1
    print(max(sum(A[l:K]),sum(A[K-1:r+1]))-1)
0