結果
問題 | No.549 素材合成システム |
ユーザー |
![]() |
提出日時 | 2017-08-01 07:05:47 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 125 ms / 2,000 ms |
コード長 | 139 bytes |
コンパイル時間 | 160 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 20,836 KB |
最終ジャッジ日時 | 2024-10-11 05:44:00 |
合計ジャッジ時間 | 5,014 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 44 |
ソースコード
#no.549 N = int(input()) x = list(map(int, input().split())) x = sorted(x) for i in range(N-1): x[-1] += x[i] // 2 print(x[-1])