結果

問題 No.549 素材合成システム
ユーザー mlihua09mlihua09
提出日時 2020-09-15 19:56:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 178 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 73,988 KB
最終ジャッジ日時 2024-06-22 01:55:11
合計ジャッジ時間 3,958 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,900 KB
testcase_01 AC 32 ms
52,200 KB
testcase_02 AC 32 ms
51,968 KB
testcase_03 AC 32 ms
52,488 KB
testcase_04 AC 32 ms
51,824 KB
testcase_05 AC 32 ms
52,120 KB
testcase_06 AC 33 ms
52,276 KB
testcase_07 AC 47 ms
71,652 KB
testcase_08 AC 51 ms
72,648 KB
testcase_09 AC 48 ms
72,844 KB
testcase_10 AC 47 ms
72,100 KB
testcase_11 AC 49 ms
72,156 KB
testcase_12 AC 46 ms
71,656 KB
testcase_13 AC 47 ms
72,048 KB
testcase_14 AC 47 ms
72,448 KB
testcase_15 AC 46 ms
71,332 KB
testcase_16 AC 47 ms
72,132 KB
testcase_17 AC 44 ms
70,012 KB
testcase_18 AC 41 ms
68,676 KB
testcase_19 AC 45 ms
70,400 KB
testcase_20 AC 44 ms
70,036 KB
testcase_21 AC 46 ms
71,336 KB
testcase_22 AC 45 ms
71,300 KB
testcase_23 AC 48 ms
72,868 KB
testcase_24 AC 46 ms
70,696 KB
testcase_25 AC 43 ms
70,112 KB
testcase_26 AC 46 ms
71,688 KB
testcase_27 AC 45 ms
69,920 KB
testcase_28 AC 31 ms
53,196 KB
testcase_29 AC 31 ms
52,576 KB
testcase_30 AC 32 ms
51,904 KB
testcase_31 AC 43 ms
70,132 KB
testcase_32 AC 43 ms
70,932 KB
testcase_33 AC 45 ms
70,164 KB
testcase_34 AC 46 ms
71,116 KB
testcase_35 AC 51 ms
73,988 KB
testcase_36 AC 45 ms
70,324 KB
testcase_37 AC 47 ms
71,484 KB
testcase_38 AC 34 ms
52,208 KB
testcase_39 AC 32 ms
52,480 KB
testcase_40 AC 40 ms
66,304 KB
testcase_41 AC 37 ms
62,112 KB
testcase_42 AC 35 ms
60,036 KB
testcase_43 AC 37 ms
63,320 KB
testcase_44 AC 36 ms
60,552 KB
testcase_45 AC 39 ms
63,856 KB
testcase_46 AC 37 ms
61,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())

A = 0
B = 0

for x in map(int, input().split()):
    
    if x > A:
        B += A // 2
        A = x
    
    else:
        B += x // 2
        
print(A + B)
0