結果

問題 No.1007 コイン集め
ユーザー stngstng
提出日時 2022-08-18 11:31:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 535 bytes
コンパイル時間 841 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 79,892 KB
最終ジャッジ日時 2024-10-05 23:48:22
合計ジャッジ時間 2,410 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,396 KB
testcase_01 AC 33 ms
53,156 KB
testcase_02 AC 33 ms
52,824 KB
testcase_03 AC 33 ms
52,260 KB
testcase_04 WA -
testcase_05 AC 33 ms
52,560 KB
testcase_06 AC 32 ms
52,960 KB
testcase_07 AC 34 ms
52,864 KB
testcase_08 AC 32 ms
52,956 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 60 ms
79,212 KB
testcase_13 AC 59 ms
79,892 KB
testcase_14 AC 63 ms
79,160 KB
testcase_15 AC 47 ms
71,308 KB
testcase_16 AC 46 ms
71,040 KB
testcase_17 AC 47 ms
70,976 KB
testcase_18 AC 57 ms
78,556 KB
testcase_19 AC 53 ms
76,732 KB
testcase_20 WA -
testcase_21 AC 56 ms
78,784 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))
else:
    print(r+l+a[k-1])
0