結果
| 問題 | No.549 素材合成システム |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-02-10 21:42:01 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 60 ms / 2,000 ms |
| + 846µs | |
| コード長 | 117 bytes |
| 記録 | |
| コンパイル時間 | 55 ms |
| コンパイル使用メモリ | 15,104 KB |
| 実行使用メモリ | 21,304 KB |
| 最終ジャッジ日時 | 2026-09-19 14:58:48 |
| 合計ジャッジ時間 | 4,488 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge4_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 44 |
ソースコード
N = int(input()) x = map(int, input().split()) x = sorted(x) a = x[-1] x = [i // 2 for i in x[:-1]] print(a + sum(x))