結果

問題 No.1007 コイン集め
ユーザー AzumabashiAzumabashi
提出日時 2020-04-24 14:07:30
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 78 ms / 1,500 ms
コード長 1,353 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,744 KB
最終ジャッジ日時 2024-10-15 01:51:07
合計ジャッジ時間 2,103 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    length, start = map(int, input().split())
    start -= 1
    coins = [int(x) for x in input().split()]
    small_coin_index = [0]
    for i in range(length):
        if i == start:
            continue
        if coins[i] < 2:
            small_coin_index.append(i)
    answer = coins[start]
    if small_coin_index == [0]:
        if coins[start] == 1:
            answer = max(sum(coins[:start + 1]), sum(coins[start:]))
        elif coins[start] > 1:
            answer = sum(coins)
    elif coins[start] > 0:
        move_range = [0, 0]
        small_coin_index.sort()
        if small_coin_index[-1] < start:
            answer = sum(coins[small_coin_index[-1]:])
        elif start < small_coin_index[1]:
            answer = sum(coins[:small_coin_index[1] + 1])
        else:
            for i in range(len(small_coin_index) - 1):
                if small_coin_index[i] < start < small_coin_index[i + 1]:
                    move_range[0] = small_coin_index[i]
                    move_range[1] = small_coin_index[i + 1]
                    break
            if coins[start] == 1:
                answer = max(sum(coins[move_range[0]:start + 1]), sum(coins[start:move_range[1] + 1]))
            else:
                answer = sum(coins[move_range[0]:move_range[1] + 1])
    print(answer)


if __name__ == '__main__':
    main()

0