結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
4,348 KB
testcase_01 AC 5 ms
4,348 KB
testcase_02 AC 41 ms
4,348 KB
testcase_03 AC 49 ms
4,348 KB
testcase_04 AC 42 ms
4,348 KB
testcase_05 AC 43 ms
4,348 KB
testcase_06 AC 32 ms
4,348 KB
testcase_07 AC 16 ms
4,348 KB
testcase_08 AC 38 ms
4,348 KB
testcase_09 AC 32 ms
4,348 KB
testcase_10 AC 45 ms
4,348 KB
testcase_11 AC 26 ms
4,348 KB
testcase_12 AC 38 ms
4,348 KB
testcase_13 AC 21 ms
4,348 KB
testcase_14 AC 0 ms
4,348 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 0 ms
4,348 KB
testcase_21 AC 1 ms
4,348 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/cc9s2qu0.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