結果
問題 |
No.45 回転寿司
|
ユーザー |
![]() |
提出日時 | 2018-04-21 21:55:01 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 353 bytes |
コンパイル時間 | 77 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-27 05:28:44 |
合計ジャッジ時間 | 2,122 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 4 |
other | RE * 30 |
ソースコード
N = int(input()) delicious = [] delicious.extend(list(map(int,input().split()))) sum = 0 while delicious != []: a = max(delicious) b = delicious.index(a) sum += a delicious[b] = 0 if b != 0 : delicious[b - 1] = 0 if len(delicious) != b + 1 : continue else: delicious[b + 1] = 0 print(sum)