結果
問題 | No.476 正しくない平均 |
ユーザー |
|
提出日時 | 2017-01-28 00:08:48 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 106 bytes |
コンパイル時間 | 114 ms |
コンパイル使用メモリ | 19,328 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-12-24 09:53:43 |
合計ジャッジ時間 | 1,185 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 26 |
コンパイルメッセージ
main.c:1:13: warning: return type defaults to ‘int’ [-Wimplicit-int] 1 | long long l;main(n,k){scanf("%d%lld",&n,&l);l*=n;for(;n--;l-=k)scanf("%d",&k);puts(l?"NO":"YES");exit(0);} | ^~~~ main.c: In function ‘main’: main.c:1:13: warning: type of ‘n’ defaults to ‘int’ [-Wimplicit-int] main.c:1:13: warning: type of ‘k’ defaults to ‘int’ [-Wimplicit-int] main.c:1:23: warning: implicit declaration of function ‘scanf’ [-Wimplicit-function-declaration] 1 | long long l;main(n,k){scanf("%d%lld",&n,&l);l*=n;for(;n--;l-=k)scanf("%d",&k);puts(l?"NO":"YES");exit(0);} | ^~~~~ main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’ +++ |+#include <stdio.h> 1 | long long l;main(n,k){scanf("%d%lld",&n,&l);l*=n;for(;n--;l-=k)scanf("%d",&k);puts(l?"NO":"YES");exit(0);} main.c:1:23: warning: incompatible implicit declaration of built-in function ‘scanf’ [-Wbuiltin-declaration-mismatch] 1 | long long l;main(n,k){scanf("%d%lld",&n,&l);l*=n;for(;n--;l-=k)scanf("%d",&k);puts(l?"NO":"YES");exit(0);} | ^~~~~ main.c:1:23: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’ main.c:1:79: warning: implicit declaration of function ‘puts’ [-Wimplicit-function-declaration] 1 | long long l;main(n,k){scanf("%d%lld",&n,&l);l*=n;for(;n--;l-=k)scanf("%d",&k);puts(l?"NO":"YES");exit(0);} | ^~~~ main.c:1:79: note: include ‘<stdio.h>’ or provide a declaration of ‘puts’ main.c:1:98: warning: implicit declaration of function ‘exit’ [-Wimplicit-function-declaration] 1 | long long l;main(n,k){scanf("%d%lld",&n,&l);l*=n;for(;n--;l-=k)scanf("%d",&k);puts(l?"NO":"YES");exit(0);} | ^~~~ main.c:1:1: note: include ‘<stdlib.h>’ or provide a
ソースコード
long long l;main(n,k){scanf("%d%lld",&n,&l);l*=n;for(;n--;l-=k)scanf("%d",&k);puts(l?"NO":"YES");exit(0);}