結果

問題 No.549 素材合成システム
ユーザー yansi819yansi819
提出日時 2024-05-17 10:29:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 138 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 82,152 KB
最終ジャッジ日時 2024-05-17 10:29:56
合計ジャッジ時間 4,936 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,432 KB
testcase_01 AC 35 ms
52,880 KB
testcase_02 AC 38 ms
52,472 KB
testcase_03 AC 33 ms
53,012 KB
testcase_04 AC 33 ms
53,160 KB
testcase_05 AC 33 ms
51,884 KB
testcase_06 AC 33 ms
52,548 KB
testcase_07 AC 68 ms
82,152 KB
testcase_08 AC 66 ms
81,456 KB
testcase_09 AC 66 ms
81,648 KB
testcase_10 AC 66 ms
80,908 KB
testcase_11 AC 66 ms
81,188 KB
testcase_12 AC 66 ms
81,808 KB
testcase_13 AC 66 ms
80,584 KB
testcase_14 AC 65 ms
80,456 KB
testcase_15 AC 66 ms
81,180 KB
testcase_16 AC 67 ms
81,092 KB
testcase_17 AC 49 ms
78,328 KB
testcase_18 AC 47 ms
75,000 KB
testcase_19 AC 57 ms
78,068 KB
testcase_20 AC 50 ms
77,792 KB
testcase_21 AC 52 ms
78,268 KB
testcase_22 AC 51 ms
78,120 KB
testcase_23 AC 57 ms
81,112 KB
testcase_24 AC 65 ms
77,968 KB
testcase_25 AC 61 ms
76,236 KB
testcase_26 AC 67 ms
80,716 KB
testcase_27 AC 62 ms
78,196 KB
testcase_28 AC 33 ms
53,260 KB
testcase_29 AC 32 ms
52,528 KB
testcase_30 AC 33 ms
53,908 KB
testcase_31 AC 51 ms
78,552 KB
testcase_32 AC 50 ms
78,812 KB
testcase_33 AC 53 ms
77,948 KB
testcase_34 AC 50 ms
78,392 KB
testcase_35 AC 52 ms
81,164 KB
testcase_36 AC 53 ms
77,868 KB
testcase_37 AC 53 ms
78,168 KB
testcase_38 AC 44 ms
53,272 KB
testcase_39 AC 32 ms
52,340 KB
testcase_40 AC 55 ms
72,848 KB
testcase_41 AC 44 ms
65,560 KB
testcase_42 AC 37 ms
59,648 KB
testcase_43 AC 40 ms
65,632 KB
testcase_44 AC 38 ms
60,724 KB
testcase_45 AC 43 ms
67,048 KB
testcase_46 AC 39 ms
63,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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