結果

問題 No.250 atetubouのzetubou
ユーザー syarosyaro
提出日時 2016-01-19 17:57:43
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 155 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 20,480 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-21 08:05:06
合計ジャッジ時間 1,514 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
6,816 KB
testcase_01 AC 6 ms
6,944 KB
testcase_02 AC 46 ms
6,944 KB
testcase_03 AC 52 ms
6,940 KB
testcase_04 AC 45 ms
6,944 KB
testcase_05 AC 46 ms
6,940 KB
testcase_06 AC 37 ms
6,944 KB
testcase_07 AC 18 ms
6,940 KB
testcase_08 AC 43 ms
6,940 KB
testcase_09 AC 32 ms
6,940 KB
testcase_10 AC 47 ms
6,940 KB
testcase_11 AC 28 ms
6,940 KB
testcase_12 AC 42 ms
6,940 KB
testcase_13 AC 23 ms
6,944 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1 ms
6,940 KB
testcase_21 AC 0 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:1:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
    1 | main(j,D,X){
      | ^~~~
main.c: In function ‘main’:
main.c:1:1: warning: type of ‘j’ defaults to ‘int’ [-Wimplicit-int]
main.c:1:1: warning: type of ‘D’ defaults to ‘int’ [-Wimplicit-int]
main.c:1:1: warning: type of ‘X’ defaults to ‘int’ [-Wimplicit-int]
main.c:2:9: warning: implicit declaration of function ‘gets’ [-Wimplicit-function-declaration]
    2 |         gets(&D);
      |         ^~~~
main.c:4:14: warning: implicit declaration of function ‘scanf’ [-Wimplicit-function-declaration]
    4 |         for(;scanf("%d%d%lf",&D,&X,&T) != -1; ) {
      |              ^~~~~
main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’
  +++ |+#include <stdio.h>
    1 | main(j,D,X){
main.c:4:14: warning: incompatible implicit declaration of built-in function ‘scanf’ [-Wbuiltin-declaration-mismatch]
    4 |         for(;scanf("%d%d%lf",&D,&X,&T) != -1; ) {
      |              ^~~~~
main.c:4:14: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’
main.c:6:17: warning: implicit declaration of function ‘puts’ [-Wimplicit-function-declaration]
    6 |                 puts(a<=T?"AC":"ZETUBOU");
      |                 ^~~~
main.c:6:17: note: include ‘<stdio.h>’ or provide a declaration of ‘puts’
/usr/bin/ld: /tmp/ccpgNZT2.o: in function `main':
main.c:(.text.startup+0x52): 警告: the `gets' function is dangerous and should not be used.

ソースコード

diff #

main(j,D,X){
	gets(&D);
	double T,a;
	for(;scanf("%d%d%lf",&D,&X,&T) != -1; ) {
		for(a=j=1;j<D;a/=j++)a*=X+j;
		puts(a<=T?"AC":"ZETUBOU");
	}
	return 0;
}
0