結果

問題 No.549 素材合成システム
ユーザー 👑 KazunKazun
提出日時 2020-07-02 19:05:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 110 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 87,140 KB
実行使用メモリ 90,140 KB
最終ジャッジ日時 2023-10-13 04:35:50
合計ジャッジ時間 7,605 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,044 KB
testcase_01 AC 78 ms
71,584 KB
testcase_02 AC 74 ms
71,388 KB
testcase_03 AC 73 ms
71,532 KB
testcase_04 AC 73 ms
71,476 KB
testcase_05 AC 73 ms
71,216 KB
testcase_06 AC 73 ms
71,244 KB
testcase_07 AC 96 ms
90,036 KB
testcase_08 AC 97 ms
89,788 KB
testcase_09 AC 94 ms
89,844 KB
testcase_10 AC 98 ms
90,016 KB
testcase_11 AC 98 ms
89,840 KB
testcase_12 AC 96 ms
89,960 KB
testcase_13 AC 96 ms
89,876 KB
testcase_14 AC 95 ms
90,100 KB
testcase_15 AC 93 ms
90,140 KB
testcase_16 AC 94 ms
89,932 KB
testcase_17 AC 94 ms
88,800 KB
testcase_18 AC 91 ms
85,640 KB
testcase_19 AC 93 ms
88,968 KB
testcase_20 AC 94 ms
88,728 KB
testcase_21 AC 94 ms
88,564 KB
testcase_22 AC 95 ms
88,136 KB
testcase_23 AC 97 ms
89,876 KB
testcase_24 AC 94 ms
88,268 KB
testcase_25 AC 91 ms
86,572 KB
testcase_26 AC 94 ms
90,104 KB
testcase_27 AC 93 ms
88,104 KB
testcase_28 AC 74 ms
71,220 KB
testcase_29 AC 72 ms
71,356 KB
testcase_30 AC 72 ms
71,436 KB
testcase_31 AC 91 ms
88,844 KB
testcase_32 AC 92 ms
88,720 KB
testcase_33 AC 91 ms
88,852 KB
testcase_34 AC 91 ms
88,948 KB
testcase_35 AC 94 ms
90,008 KB
testcase_36 AC 92 ms
89,208 KB
testcase_37 AC 94 ms
88,924 KB
testcase_38 AC 73 ms
71,220 KB
testcase_39 AC 72 ms
71,476 KB
testcase_40 AC 87 ms
83,816 KB
testcase_41 AC 80 ms
78,196 KB
testcase_42 AC 78 ms
76,300 KB
testcase_43 AC 82 ms
79,072 KB
testcase_44 AC 80 ms
76,264 KB
testcase_45 AC 83 ms
80,216 KB
testcase_46 AC 83 ms
77,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
X=list(map(int,input().split()))

M=max(X)
X.remove(M)

S=M
for x in X:
    S+=(x//2)
print(S)
0