結果

問題 No.549 素材合成システム
ユーザー rocoderrocoder
提出日時 2017-08-01 15:07:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 125 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 20,836 KB
最終ジャッジ日時 2024-04-19 13:23:11
合計ジャッジ時間 5,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,496 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 31 ms
10,624 KB
testcase_04 WA -
testcase_05 AC 31 ms
10,496 KB
testcase_06 AC 31 ms
10,496 KB
testcase_07 AC 126 ms
20,836 KB
testcase_08 AC 120 ms
20,576 KB
testcase_09 AC 124 ms
20,448 KB
testcase_10 AC 118 ms
20,452 KB
testcase_11 AC 112 ms
20,576 KB
testcase_12 AC 121 ms
20,452 KB
testcase_13 AC 125 ms
20,284 KB
testcase_14 AC 124 ms
20,584 KB
testcase_15 AC 128 ms
20,580 KB
testcase_16 AC 122 ms
20,576 KB
testcase_17 AC 74 ms
12,476 KB
testcase_18 AC 67 ms
12,108 KB
testcase_19 AC 74 ms
12,228 KB
testcase_20 AC 74 ms
12,256 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 113 ms
19,852 KB
testcase_25 AC 102 ms
18,512 KB
testcase_26 AC 118 ms
20,308 KB
testcase_27 AC 110 ms
18,788 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 29 ms
10,496 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 86 ms
20,388 KB
testcase_36 AC 79 ms
12,348 KB
testcase_37 AC 75 ms
12,480 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 83 ms
16,500 KB
testcase_41 AC 53 ms
13,312 KB
testcase_42 AC 33 ms
10,880 KB
testcase_43 AC 46 ms
11,136 KB
testcase_44 AC 36 ms
10,880 KB
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
x=[int(i) for i in input().split()]
x.sort(reverse=True)
M=x[0]
for i in range(1,N-1):
    M+=x[i]//2
print(M)
0