結果
問題 | No.1007 コイン集め |
ユーザー | Azumabashi |
提出日時 | 2020-04-24 13:53:36 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,149 bytes |
コンパイル時間 | 86 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 21,732 KB |
最終ジャッジ日時 | 2024-10-15 01:50:12 |
合計ジャッジ時間 | 1,884 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,624 KB |
testcase_01 | AC | 30 ms
10,624 KB |
testcase_02 | AC | 30 ms
10,624 KB |
testcase_03 | AC | 28 ms
10,624 KB |
testcase_04 | AC | 29 ms
10,624 KB |
testcase_05 | AC | 29 ms
10,624 KB |
testcase_06 | AC | 29 ms
10,624 KB |
testcase_07 | AC | 27 ms
10,624 KB |
testcase_08 | AC | 27 ms
10,624 KB |
testcase_09 | AC | 26 ms
10,624 KB |
testcase_10 | WA | - |
testcase_11 | AC | 27 ms
10,624 KB |
testcase_12 | AC | 68 ms
21,456 KB |
testcase_13 | AC | 68 ms
21,460 KB |
testcase_14 | AC | 69 ms
21,456 KB |
testcase_15 | AC | 55 ms
12,928 KB |
testcase_16 | AC | 57 ms
12,928 KB |
testcase_17 | AC | 57 ms
12,928 KB |
testcase_18 | AC | 70 ms
21,520 KB |
testcase_19 | WA | - |
testcase_20 | AC | 70 ms
21,472 KB |
testcase_21 | AC | 67 ms
21,524 KB |
ソースコード
def main(): length, start = map(int, input().split()) start -= 1 coins = [int(x) for x in input().split()] small_coin_index = [] for i in range(length): if i == start: continue if coins[i] < 2: small_coin_index.append(i) answer = coins[start] if coins[start] == 1: answer = max(sum(coins[:start + 1]), sum(coins[start:])) elif not small_coin_index: 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[0]: answer = sum(coins[:small_coin_index[0] + 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 answer = sum(coins[move_range[0]:move_range[1] + 1]) print(answer) if __name__ == '__main__': main()