結果

問題 No.549 素材合成システム
ユーザー Konton7Konton7
提出日時 2019-04-30 06:58:05
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 201 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 10,496 KB
実行使用メモリ 19,756 KB
最終ジャッジ日時 2023-08-27 01:48:59
合計ジャッジ時間 5,891 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,840 KB
testcase_01 AC 16 ms
7,784 KB
testcase_02 AC 16 ms
7,936 KB
testcase_03 AC 17 ms
7,848 KB
testcase_04 AC 15 ms
7,800 KB
testcase_05 AC 17 ms
7,864 KB
testcase_06 AC 17 ms
7,828 KB
testcase_07 AC 98 ms
19,756 KB
testcase_08 AC 102 ms
19,584 KB
testcase_09 AC 100 ms
19,580 KB
testcase_10 AC 99 ms
19,600 KB
testcase_11 AC 102 ms
19,652 KB
testcase_12 AC 99 ms
19,620 KB
testcase_13 AC 100 ms
19,584 KB
testcase_14 AC 99 ms
19,552 KB
testcase_15 AC 100 ms
19,628 KB
testcase_16 AC 102 ms
19,652 KB
testcase_17 AC 58 ms
9,888 KB
testcase_18 AC 49 ms
9,460 KB
testcase_19 AC 53 ms
9,772 KB
testcase_20 AC 53 ms
9,724 KB
testcase_21 AC 66 ms
18,456 KB
testcase_22 AC 62 ms
17,312 KB
testcase_23 AC 70 ms
19,596 KB
testcase_24 AC 93 ms
18,416 KB
testcase_25 AC 83 ms
17,380 KB
testcase_26 AC 100 ms
19,176 KB
testcase_27 AC 87 ms
17,484 KB
testcase_28 AC 16 ms
7,800 KB
testcase_29 AC 15 ms
7,772 KB
testcase_30 AC 16 ms
7,784 KB
testcase_31 AC 58 ms
9,888 KB
testcase_32 AC 59 ms
9,992 KB
testcase_33 AC 56 ms
9,864 KB
testcase_34 AC 56 ms
9,828 KB
testcase_35 AC 72 ms
19,676 KB
testcase_36 AC 60 ms
9,876 KB
testcase_37 AC 59 ms
9,868 KB
testcase_38 AC 16 ms
7,784 KB
testcase_39 AC 16 ms
7,804 KB
testcase_40 AC 66 ms
14,872 KB
testcase_41 AC 36 ms
10,932 KB
testcase_42 AC 17 ms
8,272 KB
testcase_43 AC 30 ms
8,864 KB
testcase_44 AC 20 ms
8,336 KB
testcase_45 AC 33 ms
8,828 KB
testcase_46 AC 26 ms
8,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
android_list = [ int(v) for v in input().split(" ") ] 
android_list = sorted(android_list)


for i in range(n-1):
    android_list[n-1] += android_list[i] // 2

print(android_list[-1])
0