結果

問題 No.549 素材合成システム
ユーザー H3PO4H3PO4
提出日時 2020-09-27 22:11:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 161 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 10,616 KB
実行使用メモリ 19,936 KB
最終ジャッジ日時 2023-09-13 02:56:22
合計ジャッジ時間 5,326 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,808 KB
testcase_01 AC 15 ms
7,800 KB
testcase_02 AC 14 ms
7,868 KB
testcase_03 AC 15 ms
7,956 KB
testcase_04 AC 15 ms
7,944 KB
testcase_05 AC 14 ms
7,800 KB
testcase_06 AC 15 ms
7,832 KB
testcase_07 AC 72 ms
19,616 KB
testcase_08 AC 71 ms
19,572 KB
testcase_09 AC 71 ms
19,504 KB
testcase_10 AC 72 ms
19,652 KB
testcase_11 AC 73 ms
19,576 KB
testcase_12 AC 75 ms
19,588 KB
testcase_13 AC 71 ms
19,692 KB
testcase_14 AC 72 ms
19,736 KB
testcase_15 AC 72 ms
19,688 KB
testcase_16 AC 76 ms
19,620 KB
testcase_17 AC 58 ms
10,024 KB
testcase_18 AC 49 ms
9,372 KB
testcase_19 AC 54 ms
9,888 KB
testcase_20 AC 53 ms
9,708 KB
testcase_21 AC 67 ms
18,556 KB
testcase_22 AC 63 ms
17,876 KB
testcase_23 AC 73 ms
19,936 KB
testcase_24 AC 67 ms
18,528 KB
testcase_25 AC 61 ms
17,456 KB
testcase_26 AC 71 ms
19,492 KB
testcase_27 AC 62 ms
17,612 KB
testcase_28 AC 15 ms
7,996 KB
testcase_29 AC 15 ms
7,892 KB
testcase_30 AC 16 ms
7,944 KB
testcase_31 AC 59 ms
9,960 KB
testcase_32 AC 58 ms
9,960 KB
testcase_33 AC 63 ms
9,916 KB
testcase_34 AC 60 ms
9,956 KB
testcase_35 AC 75 ms
19,612 KB
testcase_36 AC 60 ms
10,060 KB
testcase_37 AC 59 ms
10,020 KB
testcase_38 AC 15 ms
7,804 KB
testcase_39 AC 15 ms
7,900 KB
testcase_40 AC 50 ms
15,068 KB
testcase_41 AC 30 ms
11,052 KB
testcase_42 AC 17 ms
8,264 KB
testcase_43 AC 30 ms
8,792 KB
testcase_44 AC 19 ms
8,380 KB
testcase_45 AC 33 ms
8,872 KB
testcase_46 AC 26 ms
8,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X = tuple(map(int, input().split()))
M = X.index(max(X))
ans = max(X)
for i, x in enumerate(X):
    if i != M:
        ans += x // 2
print(ans)
0