結果

問題 No.549 素材合成システム
ユーザー greentea011greentea011
提出日時 2019-03-28 14:50:32
言語 C
(gcc 12.3.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 250 bytes
コンパイル時間 1,398 ms
コンパイル使用メモリ 27,776 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 22:02:20
合計ジャッジ時間 1,815 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,248 KB
testcase_02 WA -
testcase_03 AC 1 ms
5,248 KB
testcase_04 WA -
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 11 ms
5,248 KB
testcase_08 AC 11 ms
5,248 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 11 ms
5,248 KB
testcase_12 WA -
testcase_13 AC 11 ms
5,248 KB
testcase_14 WA -
testcase_15 AC 11 ms
5,248 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 9 ms
5,248 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 10 ms
5,248 KB
testcase_23 WA -
testcase_24 AC 10 ms
5,248 KB
testcase_25 AC 10 ms
5,248 KB
testcase_26 AC 11 ms
5,248 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 9 ms
5,248 KB
testcase_32 AC 9 ms
5,248 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 11 ms
5,248 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 1 ms
5,248 KB
testcase_39 WA -
testcase_40 AC 8 ms
5,248 KB
testcase_41 AC 4 ms
5,248 KB
testcase_42 AC 1 ms
5,248 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main(){
    int n;
    int ans;
    int max;
    int c;
    scanf("%d",&n);
    for (int i=0;i<n;i++) {
        scanf("%d",&c);
        max=(c>max)?c:max;
        ans+=c/2;
    }
    ans+=max/2+max%2;
    printf("%d\n",ans);
}
0