結果
問題 | No.549 素材合成システム |
ユーザー | butsurizuki |
提出日時 | 2017-07-28 22:31:03 |
言語 | C90 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 13 ms / 2,000 ms |
コード長 | 2,705 bytes |
コンパイル時間 | 712 ms |
コンパイル使用メモリ | 23,424 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-10 05:07:09 |
合計ジャッジ時間 | 2,335 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 11 ms
6,816 KB |
testcase_08 | AC | 11 ms
6,816 KB |
testcase_09 | AC | 11 ms
6,820 KB |
testcase_10 | AC | 12 ms
6,816 KB |
testcase_11 | AC | 12 ms
6,820 KB |
testcase_12 | AC | 11 ms
6,816 KB |
testcase_13 | AC | 11 ms
6,820 KB |
testcase_14 | AC | 11 ms
6,816 KB |
testcase_15 | AC | 11 ms
6,816 KB |
testcase_16 | AC | 11 ms
6,820 KB |
testcase_17 | AC | 10 ms
6,820 KB |
testcase_18 | AC | 8 ms
6,820 KB |
testcase_19 | AC | 10 ms
6,816 KB |
testcase_20 | AC | 9 ms
6,816 KB |
testcase_21 | AC | 11 ms
6,820 KB |
testcase_22 | AC | 10 ms
6,816 KB |
testcase_23 | AC | 12 ms
6,816 KB |
testcase_24 | AC | 10 ms
6,816 KB |
testcase_25 | AC | 9 ms
6,816 KB |
testcase_26 | AC | 11 ms
6,816 KB |
testcase_27 | AC | 9 ms
6,816 KB |
testcase_28 | AC | 2 ms
6,816 KB |
testcase_29 | AC | 2 ms
6,816 KB |
testcase_30 | AC | 1 ms
6,820 KB |
testcase_31 | AC | 10 ms
6,820 KB |
testcase_32 | AC | 10 ms
6,820 KB |
testcase_33 | AC | 10 ms
6,820 KB |
testcase_34 | AC | 10 ms
6,820 KB |
testcase_35 | AC | 13 ms
6,816 KB |
testcase_36 | AC | 10 ms
6,820 KB |
testcase_37 | AC | 10 ms
6,816 KB |
testcase_38 | AC | 2 ms
6,816 KB |
testcase_39 | AC | 1 ms
6,816 KB |
testcase_40 | AC | 7 ms
6,820 KB |
testcase_41 | AC | 4 ms
6,816 KB |
testcase_42 | AC | 2 ms
6,816 KB |
testcase_43 | AC | 4 ms
6,820 KB |
testcase_44 | AC | 2 ms
6,816 KB |
testcase_45 | AC | 5 ms
6,820 KB |
testcase_46 | AC | 4 ms
6,820 KB |
コンパイルメッセージ
main.c:15:5: warning: conflicting types for built-in function ‘round’; expected ‘double(double)’ [-Wbuiltin-declaration-mismatch] 15 | int round(int a,int b){if((a%b)*2 >= b){return (a/b)+1;}return a/b;} | ^~~~~ main.c:5:1: note: ‘round’ is declared in header ‘<math.h>’ 4 | #include<stdlib.h> +++ |+#include <math.h> 5 | #define inf 1145141919 main.c:16:5: warning: conflicting types for built-in function ‘ceil’; expected ‘double(double)’ [-Wbuiltin-declaration-mismatch] 16 | int ceil(int a,int b){if(a%b==0){return a/b;}return (a/b)+1;} | ^~~~ main.c:16:5: note: ‘ceil’ is declared in header ‘<math.h>’ main.c:21:5: warning: conflicting types for built-in function ‘pow’; expected ‘double(double, double)’ [-Wbuiltin-declaration-mismatch] 21 | int pow(int a,int b){int i,r=1;for(i=1;i<=b;i++){r*=a;}return r;} | ^~~ main.c:21:5: note: ‘pow’ is declared in header ‘<math.h>’ main.c:24:11: warning: conflicting types for built-in function ‘llround’; expected ‘long long int(double)’ [-Wbuiltin-declaration-mismatch] 24 | long long llround(long long a,long long b){if((a%b)*2 >= b){return (a/b)+1;}return a/b;} | ^~~~~~~ main.c:24:11: note: ‘llround’ is declared in header ‘<math.h>’ main.c: In function ‘main’: main.c:42:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 42 | scanf("%lld",&n); | ^~~~~~~~~~~~~~~~ main.c:43:27: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 43 | for(i = 1;i <= n;i++){scanf("%lld",&a[i]);as+=(a[i]/2);mp=llmax(mp,a[i]);} | ^~~~~~~~~~~~~~~~~~~
ソースコード
//set many funcs #include<stdio.h> #include<string.h> #include<stdlib.h> #define inf 1145141919 #define llinf 1145141919810364364 #define mod 1000000007 void llswap(long long *a,long long *b){ long long c; c=*a;*a=*b;*b=c; } int max(int a,int b){if(a>b){return a;}return b;} int min(int a,int b){if(a<b){return a;}return b;} int round(int a,int b){if((a%b)*2 >= b){return (a/b)+1;}return a/b;} int ceil(int a,int b){if(a%b==0){return a/b;}return (a/b)+1;} int gcd(int a,int b){int c;while(b!=0){c=a%b;a=b;b=c;}return a;} int lcm(int a,int b){int c=gcd(a,b);a/=c;return a*b;} int nCr(int a,int b){int i,r=1;for(i=1;i<=b;i++){r*=(a+1-i);r/=i;}return r;} int fact(int a){int i,r=1;for(i=1;i<=a;i++){r*=i;}return r;} int pow(int a,int b){int i,r=1;for(i=1;i<=b;i++){r*=a;}return r;} long long llmax(long long a,long long b){if(a>b){return a;}return b;} long long llmin(long long a,long long b){if(a<b){return a;}return b;} long long llround(long long a,long long b){if((a%b)*2 >= b){return (a/b)+1;}return a/b;} long long llceil(long long a,long long b){if(a%b==0){return a/b;}return (a/b)+1;} long long llgcd(long long a,long long b){long long c;while(b!=0){c=a%b;a=b;b=c;}return a;} long long lllcm(long long a,long long b){long long c=llgcd(a,b);a/=c;return a*b;} long long llnCr(long long a,long long b){long long i,r=1;for(i=1;i<=b;i++){r*=(a+1-i);r/=i;}return r;} long long llfact(long long a){long long i,r=1;for(i=1;i<=a;i++){r*=i;}return r;} long long llpow(long long a,long long b){long long i,r=1;for(i=1;i<=b;i++){r*=a;}return r;} double dbmax(double a,double b){if(a>b){return a;}return b;} double dbmin(double a,double b){if(a<b){return a;}return b;} int sortfncsj(const void *a,const void *b){if(*(int *)a>*(int *)b){return 1;}if(*(int *)a==*(int *)b){return 0;}return -1;} int sortfnckj(const void *a,const void *b){if(*(int *)a<*(int *)b){return 1;}if(*(int *)a==*(int *)b){return 0;}return -1;} int llsortfncsj(const void *a,const void *b){if(*(long long *)a>*(long long *)b){return 1;}if(*(long long *)a==*(long long *)b){return 0;}return -1;} int llsortfnckj(const void *a,const void *b){if(*(long long *)a<*(long long *)b){return 1;}if(*(long long *)a==*(long long *)b){return 0;}return -1;} int dbsortfncsj(const void *a,const void *b){if(*(double *)a>*(double *)b){return 1;}if(*(double *)a==*(double *)b){return 0;}return -1;} int dbsortfnckj(const void *a,const void *b){if(*(double *)a<*(double *)b){return 1;}if(*(double *)a==*(double *)b){return 0;}return -1;} int main(void){ long long n,i,a[131072],res=0,as=0,mp=0; scanf("%lld",&n); for(i = 1;i <= n;i++){scanf("%lld",&a[i]);as+=(a[i]/2);mp=llmax(mp,a[i]);} printf("%lld\n",mp+as-mp/2); return 0; }