結果

問題 No.1007 コイン集め
ユーザー kohei2019kohei2019
提出日時 2022-07-11 23:38:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,040 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 84,992 KB
最終ジャッジ日時 2024-06-22 19:08:09
合計ジャッジ時間 2,289 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,092 KB
testcase_01 AC 35 ms
52,128 KB
testcase_02 AC 35 ms
52,004 KB
testcase_03 AC 34 ms
52,676 KB
testcase_04 WA -
testcase_05 AC 35 ms
52,012 KB
testcase_06 AC 33 ms
52,276 KB
testcase_07 AC 33 ms
52,772 KB
testcase_08 AC 34 ms
52,400 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 60 ms
84,616 KB
testcase_13 AC 60 ms
84,420 KB
testcase_14 AC 59 ms
83,880 KB
testcase_15 AC 51 ms
76,948 KB
testcase_16 AC 51 ms
77,068 KB
testcase_17 AC 51 ms
76,764 KB
testcase_18 AC 59 ms
83,928 KB
testcase_19 AC 56 ms
84,096 KB
testcase_20 WA -
testcase_21 AC 58 ms
84,184 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))
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