結果

問題 No.549 素材合成システム
ユーザー ntudantuda
提出日時 2024-02-10 14:01:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 82,460 KB
最終ジャッジ日時 2024-09-28 17:11:14
合計ジャッジ時間 4,559 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
52,820 KB
testcase_01 AC 31 ms
53,272 KB
testcase_02 AC 31 ms
52,156 KB
testcase_03 AC 32 ms
52,120 KB
testcase_04 AC 31 ms
52,520 KB
testcase_05 AC 31 ms
52,756 KB
testcase_06 AC 30 ms
53,356 KB
testcase_07 AC 64 ms
81,332 KB
testcase_08 AC 68 ms
82,316 KB
testcase_09 AC 66 ms
82,388 KB
testcase_10 AC 64 ms
81,000 KB
testcase_11 AC 66 ms
82,460 KB
testcase_12 AC 65 ms
80,720 KB
testcase_13 AC 64 ms
81,540 KB
testcase_14 AC 66 ms
81,720 KB
testcase_15 AC 65 ms
81,376 KB
testcase_16 AC 66 ms
80,964 KB
testcase_17 AC 48 ms
79,820 KB
testcase_18 AC 46 ms
74,660 KB
testcase_19 AC 49 ms
78,268 KB
testcase_20 AC 48 ms
78,532 KB
testcase_21 AC 49 ms
78,652 KB
testcase_22 AC 48 ms
78,004 KB
testcase_23 AC 53 ms
80,792 KB
testcase_24 AC 63 ms
80,484 KB
testcase_25 AC 61 ms
76,148 KB
testcase_26 AC 66 ms
80,860 KB
testcase_27 AC 60 ms
78,248 KB
testcase_28 AC 31 ms
52,404 KB
testcase_29 AC 32 ms
52,000 KB
testcase_30 AC 31 ms
52,140 KB
testcase_31 AC 47 ms
78,964 KB
testcase_32 AC 50 ms
78,372 KB
testcase_33 AC 49 ms
79,280 KB
testcase_34 AC 47 ms
78,048 KB
testcase_35 AC 52 ms
81,960 KB
testcase_36 AC 51 ms
79,164 KB
testcase_37 AC 52 ms
78,864 KB
testcase_38 AC 32 ms
53,356 KB
testcase_39 AC 33 ms
52,228 KB
testcase_40 AC 53 ms
74,148 KB
testcase_41 AC 41 ms
64,808 KB
testcase_42 AC 34 ms
58,808 KB
testcase_43 AC 39 ms
65,204 KB
testcase_44 AC 36 ms
61,892 KB
testcase_45 AC 40 ms
68,368 KB
testcase_46 AC 38 ms
64,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = list(map(int,input().split()))
X.sort()
tmp = X[-1]
for x in X[:-1]:
    tmp = x//2 + tmp
print(tmp)
0