結果
| 問題 | No.582 キャンディー・ボックス3 |
| コンテスト | |
| ユーザー |
%20
|
| 提出日時 | 2017-10-31 17:13:42 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 76 bytes |
| 記録 | |
| コンパイル時間 | 326 ms |
| コンパイル使用メモリ | 28,032 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-22 11:01:32 |
| 合計ジャッジ時間 | 1,506 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 |
コンパイルメッセージ
main.c:1:8: warning: return type defaults to 'int' [-Wimplicit-int]
1 | long s;main(i,a){for(;~scanf("%d",&a);)a&&--i?s+=a:0;puts(s&s+i<2?"A":"B");}
| ^~~~
main.c: In function 'main':
main.c:1:8: warning: type of 'i' defaults to 'int' [-Wimplicit-int]
main.c:1:8: warning: type of 'a' defaults to 'int' [-Wimplicit-int]
main.c:1:24: warning: implicit declaration of function 'scanf' [-Wimplicit-function-declaration]
1 | long s;main(i,a){for(;~scanf("%d",&a);)a&&--i?s+=a:0;puts(s&s+i<2?"A":"B");}
| ^~~~~
main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'scanf'
+++ |+#include <stdio.h>
1 | long s;main(i,a){for(;~scanf("%d",&a);)a&&--i?s+=a:0;puts(s&s+i<2?"A":"B");}
main.c:1:24: warning: incompatible implicit declaration of built-in function 'scanf' [-Wbuiltin-declaration-mismatch]
1 | long s;main(i,a){for(;~scanf("%d",&a);)a&&--i?s+=a:0;puts(s&s+i<2?"A":"B");}
| ^~~~~
main.c:1:24: note: include '<stdio.h>' or provide a declaration of 'scanf'
main.c:1:54: warning: implicit declaration of function 'puts' [-Wimplicit-function-declaration]
1 | long s;main(i,a){for(;~scanf("%d",&a);)a&&--i?s+=a:0;puts(s&s+i<2?"A":"B");}
| ^~~~
main.c:1:54: note: include '<stdio.h>' or provide a declaration of 'puts'
ソースコード
long s;main(i,a){for(;~scanf("%d",&a);)a&&--i?s+=a:0;puts(s&s+i<2?"A":"B");}
%20