結果

問題 No.1007 コイン集め
ユーザー kohei2019kohei2019
提出日時 2022-07-11 23:39:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 1,500 ms
コード長 1,042 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 84,152 KB
最終ジャッジ日時 2024-06-22 19:08:48
合計ジャッジ時間 1,941 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 34 ms
52,480 KB
testcase_02 AC 34 ms
51,840 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 AC 33 ms
52,096 KB
testcase_06 AC 33 ms
52,096 KB
testcase_07 AC 33 ms
52,224 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 33 ms
52,224 KB
testcase_10 AC 34 ms
52,224 KB
testcase_11 AC 34 ms
52,224 KB
testcase_12 AC 60 ms
83,968 KB
testcase_13 AC 59 ms
84,152 KB
testcase_14 AC 57 ms
83,840 KB
testcase_15 AC 51 ms
76,800 KB
testcase_16 AC 50 ms
76,672 KB
testcase_17 AC 51 ms
77,128 KB
testcase_18 AC 58 ms
83,712 KB
testcase_19 AC 57 ms
82,884 KB
testcase_20 AC 59 ms
83,968 KB
testcase_21 AC 60 ms
83,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
lsA = list(map(int,input().split()))
K -= 1
if lsA[K] == 0:
    print(0)
elif lsA[K] == 1:
    a1 = 0
    ind = K+1
    while ind < N:
        if lsA[ind] == 0:
            break
        elif lsA[ind] == 1:
            a1 += 1
            break
        else:
            a1 += lsA[ind]
            ind += 1
    a2 = 0
    ind = K-1
    while 0 <= ind:
        if lsA[ind] == 0:
            break
        elif lsA[ind] == 1:
            a2 += 1
            break
        else:
            a2 += lsA[ind]
            ind -= 1
    print(max(a1,a2)+1)
else:
    a1 = 0
    ind = K+1
    while ind < N:
        if lsA[ind] == 0:
            break
        elif lsA[ind] == 1:
            a1 += 1
            break
        else:
            a1 += lsA[ind]
            ind += 1
    a2 = 0
    ind = K-1
    while 0 <= ind:
        if lsA[ind] == 0:
            break
        elif lsA[ind] == 1:
            a2 += 1
            break
        else:
            a2 += lsA[ind]
            ind -= 1
    print(a1+a2+lsA[K]) 
0