結果

問題 No.1007 コイン集め
ユーザー syunsukesyunsuke
提出日時 2020-09-14 23:14:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 592 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 87,764 KB
最終ジャッジ日時 2024-06-22 01:00:04
合計ジャッジ時間 1,824 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
52,208 KB
testcase_01 AC 28 ms
53,736 KB
testcase_02 AC 29 ms
53,540 KB
testcase_03 AC 30 ms
52,476 KB
testcase_04 AC 28 ms
52,736 KB
testcase_05 AC 28 ms
52,800 KB
testcase_06 AC 27 ms
51,884 KB
testcase_07 AC 29 ms
52,608 KB
testcase_08 AC 28 ms
53,280 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 57 ms
86,700 KB
testcase_13 AC 54 ms
86,604 KB
testcase_14 AC 58 ms
86,900 KB
testcase_15 AC 48 ms
80,648 KB
testcase_16 AC 49 ms
80,380 KB
testcase_17 AC 49 ms
79,568 KB
testcase_18 AC 55 ms
87,764 KB
testcase_19 AC 50 ms
87,124 KB
testcase_20 WA -
testcase_21 AC 53 ms
86,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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