結果
問題 |
No.549 素材合成システム
|
ユーザー |
|
提出日時 | 2024-12-11 19:43:03 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 105 ms / 2,000 ms |
コード長 | 153 bytes |
コンパイル時間 | 177 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 20,836 KB |
最終ジャッジ日時 | 2024-12-11 19:43:09 |
合計ジャッジ時間 | 5,365 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 44 |
ソースコード
n = int(input()) x = list(map(int, input().split())) k = x.index(max(x)) b = max(x) for i in range(n): if i != k: b += x[i] // 2 print(b)