結果

問題 No.1007 コイン集め
ユーザー AzumabashiAzumabashi
提出日時 2020-04-24 13:32:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 922 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,816 KB
最終ジャッジ日時 2024-10-15 01:49:29
合計ジャッジ時間 2,773 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 WA -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 32 ms
10,624 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 WA -
testcase_16 AC 60 ms
13,052 KB
testcase_17 AC 60 ms
13,016 KB
testcase_18 RE -
testcase_19 AC 76 ms
21,576 KB
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left


def main():
    length, start = map(int, input().split())
    start -= 1
    coins = [int(x) for x in input().split()]
    only_1_coin_index = []
    for i in range(length):
        if i == start:
            continue
        if coins[i] == 1:
            only_1_coin_index.append(i)
    answer = 0
    if coins[start] > 1:
        nearest_1_coin = bisect_left(only_1_coin_index, start)
        if nearest_1_coin == 0:
            answer = max(sum(coins[:start + 1]), sum(coins[start: only_1_coin_index[0] + 1]))
        elif nearest_1_coin == len(only_1_coin_index):
            answer = max(sum(coins[only_1_coin_index[0]:start + 1]), sum(coins[start:]))
        else:
            left = only_1_coin_index[nearest_1_coin - 1]
            right = only_1_coin_index[nearest_1_coin]
            answer = sum(coins[left:right + 1])
    print(answer)


if __name__ == '__main__':
    main()

0