結果

問題 No.549 素材合成システム
ユーザー ttrttr
提出日時 2020-05-27 22:48:28
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 120 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 10,648 KB
実行使用メモリ 19,728 KB
最終ジャッジ日時 2023-08-03 06:14:02
合計ジャッジ時間 6,308 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
7,788 KB
testcase_01 AC 15 ms
7,844 KB
testcase_02 AC 20 ms
7,808 KB
testcase_03 AC 18 ms
7,768 KB
testcase_04 AC 19 ms
7,848 KB
testcase_05 AC 16 ms
7,848 KB
testcase_06 AC 19 ms
7,792 KB
testcase_07 AC 108 ms
19,728 KB
testcase_08 AC 104 ms
19,624 KB
testcase_09 AC 105 ms
19,540 KB
testcase_10 AC 109 ms
19,672 KB
testcase_11 AC 104 ms
19,672 KB
testcase_12 AC 104 ms
19,604 KB
testcase_13 AC 105 ms
19,724 KB
testcase_14 AC 106 ms
19,676 KB
testcase_15 AC 109 ms
19,588 KB
testcase_16 AC 112 ms
19,616 KB
testcase_17 AC 56 ms
9,960 KB
testcase_18 AC 49 ms
9,424 KB
testcase_19 AC 58 ms
9,580 KB
testcase_20 AC 55 ms
9,628 KB
testcase_21 AC 71 ms
18,504 KB
testcase_22 AC 64 ms
17,492 KB
testcase_23 AC 72 ms
19,664 KB
testcase_24 AC 93 ms
18,648 KB
testcase_25 AC 84 ms
17,324 KB
testcase_26 AC 105 ms
19,160 KB
testcase_27 AC 88 ms
17,500 KB
testcase_28 AC 16 ms
7,784 KB
testcase_29 AC 16 ms
7,792 KB
testcase_30 AC 20 ms
7,840 KB
testcase_31 AC 58 ms
10,052 KB
testcase_32 AC 57 ms
9,860 KB
testcase_33 AC 59 ms
9,948 KB
testcase_34 AC 58 ms
10,012 KB
testcase_35 AC 73 ms
19,552 KB
testcase_36 AC 58 ms
10,000 KB
testcase_37 AC 59 ms
10,004 KB
testcase_38 AC 16 ms
7,768 KB
testcase_39 AC 17 ms
7,784 KB
testcase_40 AC 70 ms
14,780 KB
testcase_41 AC 39 ms
10,996 KB
testcase_42 AC 18 ms
8,228 KB
testcase_43 AC 30 ms
8,736 KB
testcase_44 AC 21 ms
8,116 KB
testcase_45 AC 33 ms
8,868 KB
testcase_46 AC 27 ms
8,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = [int(l) for l in input().split()]

L.sort()
for i in range(N-1):
    L[-1] += L[i]//2
print(L[-1])
0