結果

問題 No.1007 コイン集め
ユーザー 👑 rin204rin204
提出日時 2020-08-13 12:57:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 87 ms / 1,500 ms
コード長 505 bytes
コンパイル時間 128 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,804 KB
最終ジャッジ日時 2024-10-09 19:09:46
合計ジャッジ時間 1,984 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 81 ms
21,656 KB
testcase_13 AC 85 ms
21,540 KB
testcase_14 AC 83 ms
21,788 KB
testcase_15 AC 49 ms
13,104 KB
testcase_16 AC 49 ms
13,100 KB
testcase_17 AC 50 ms
12,976 KB
testcase_18 AC 87 ms
21,804 KB
testcase_19 AC 64 ms
21,676 KB
testcase_20 AC 84 ms
21,680 KB
testcase_21 AC 75 ms
21,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
alst = list(map(int, input().split()))
k -= 1
if alst[k] == 0:
    print(0)
    exit()

pos_l = k - 1
while 1:
    if pos_l <= 0:
        break
    if alst[pos_l] < 2:
        break
    pos_l -= 1

pos_r = k + 1
while 1:
    if pos_r >= n - 1:
        break
    if alst[pos_r] < 2:
        break
    pos_r += 1
pos_r += 1

l_sum = sum(alst[pos_l:k])
r_sum = sum(alst[k + 1:pos_r])

if alst[k] == 1:
    print(max(l_sum, r_sum) + 1)
else:
    print(l_sum + r_sum + alst[k])
0