結果

問題 No.549 素材合成システム
ユーザー htkbhtkb
提出日時 2018-05-20 08:37:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 93 bytes
コンパイル時間 81 ms
コンパイル使用メモリ 10,696 KB
実行使用メモリ 19,948 KB
最終ジャッジ日時 2023-09-10 23:53:55
合計ジャッジ時間 4,841 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,908 KB
testcase_01 AC 15 ms
7,908 KB
testcase_02 AC 16 ms
7,828 KB
testcase_03 AC 15 ms
7,792 KB
testcase_04 AC 16 ms
7,832 KB
testcase_05 AC 15 ms
7,796 KB
testcase_06 AC 16 ms
7,852 KB
testcase_07 AC 75 ms
19,948 KB
testcase_08 AC 73 ms
19,840 KB
testcase_09 AC 77 ms
19,868 KB
testcase_10 AC 71 ms
19,872 KB
testcase_11 AC 74 ms
19,884 KB
testcase_12 AC 74 ms
19,836 KB
testcase_13 AC 73 ms
19,836 KB
testcase_14 AC 74 ms
19,844 KB
testcase_15 AC 74 ms
19,860 KB
testcase_16 AC 73 ms
19,848 KB
testcase_17 AC 39 ms
9,936 KB
testcase_18 AC 34 ms
9,364 KB
testcase_19 AC 39 ms
9,632 KB
testcase_20 AC 37 ms
9,800 KB
testcase_21 AC 49 ms
18,272 KB
testcase_22 AC 48 ms
17,316 KB
testcase_23 AC 53 ms
19,648 KB
testcase_24 AC 68 ms
18,492 KB
testcase_25 AC 63 ms
17,376 KB
testcase_26 AC 72 ms
19,212 KB
testcase_27 AC 63 ms
17,388 KB
testcase_28 AC 15 ms
7,848 KB
testcase_29 AC 16 ms
7,936 KB
testcase_30 AC 16 ms
7,800 KB
testcase_31 AC 39 ms
9,936 KB
testcase_32 AC 39 ms
9,932 KB
testcase_33 AC 38 ms
9,960 KB
testcase_34 AC 39 ms
10,032 KB
testcase_35 AC 53 ms
19,572 KB
testcase_36 AC 40 ms
9,884 KB
testcase_37 AC 41 ms
9,972 KB
testcase_38 AC 15 ms
7,844 KB
testcase_39 AC 16 ms
7,876 KB
testcase_40 AC 50 ms
14,728 KB
testcase_41 AC 30 ms
11,092 KB
testcase_42 AC 16 ms
8,284 KB
testcase_43 AC 23 ms
8,824 KB
testcase_44 AC 18 ms
8,136 KB
testcase_45 AC 25 ms
8,736 KB
testcase_46 AC 21 ms
8,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
a = sorted(map(int, input().split()))
print(sum(n//2 for n in a[:-1])+a[-1])
0