結果
問題 | No.549 素材合成システム |
ユーザー |
|
提出日時 | 2017-07-31 10:43:35 |
言語 | Python2 (2.7.18) |
結果 |
AC
|
実行時間 | 111 ms / 2,000 ms |
コード長 | 133 bytes |
コンパイル時間 | 512 ms |
コンパイル使用メモリ | 7,040 KB |
実行使用メモリ | 14,988 KB |
最終ジャッジ日時 | 2024-10-11 00:07:16 |
合計ジャッジ時間 | 4,734 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 44 |
ソースコード
#yuki_549 n=int(raw_input()) x=map(int,raw_input().split()) y=sorted(x) res=y[-1] for i in xrange(len(x)-1): res+=y[i]/2 print res