結果
問題 |
No.549 素材合成システム
|
ユーザー |
![]() |
提出日時 | 2017-07-31 15:55:14 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 129 bytes |
コンパイル時間 | 398 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 17,572 KB |
最終ジャッジ日時 | 2024-10-11 00:09:24 |
合計ジャッジ時間 | 4,087 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 4 TLE * 1 -- * 39 |
ソースコード
N = int(input()) x = [int(i) for i in input().split()] x.sort() for i in range(N-1): x[i] = max(x)+int(x[i]/2) print(max(x))