結果

問題 No.1007 コイン集め
ユーザー stngstng
提出日時 2022-08-18 11:34:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 1,500 ms
コード長 542 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 79,848 KB
最終ジャッジ日時 2024-10-05 23:52:07
合計ジャッジ時間 2,346 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,224 KB
testcase_01 AC 34 ms
53,108 KB
testcase_02 AC 37 ms
52,180 KB
testcase_03 AC 36 ms
52,072 KB
testcase_04 AC 36 ms
52,404 KB
testcase_05 AC 35 ms
52,460 KB
testcase_06 AC 34 ms
52,612 KB
testcase_07 AC 36 ms
52,300 KB
testcase_08 AC 35 ms
52,252 KB
testcase_09 AC 33 ms
53,008 KB
testcase_10 AC 34 ms
52,600 KB
testcase_11 AC 33 ms
53,228 KB
testcase_12 AC 59 ms
79,400 KB
testcase_13 AC 58 ms
79,692 KB
testcase_14 AC 58 ms
79,848 KB
testcase_15 AC 46 ms
70,712 KB
testcase_16 AC 48 ms
70,176 KB
testcase_17 AC 48 ms
71,108 KB
testcase_18 AC 54 ms
78,692 KB
testcase_19 AC 51 ms
76,552 KB
testcase_20 AC 54 ms
77,984 KB
testcase_21 AC 55 ms
79,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
a = [int(i) for i in input().split()]

if a[k-1] == 0:
    print(0)
    exit()

l = 0
now = k-2

for i in range(n):
    if now != -1:
        if a[now] > 1:
            l += a[now]
        else:
            l += a[now]
            break
        now -= 1

r = 0
now = k

for i in range(n):
    if now != n:
        if a[now] > 1:
            r += a[now]
        else:
            r += a[now]
            break
        now += 1
    #print(r)

if a[k-1] == 1:
    print(max(r,l)+a[k-1])
else:
    print(r+l+a[k-1])
0