結果

問題 No.250 atetubouのzetubou
ユーザー syarosyaro
提出日時 2016-01-19 18:28:23
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 170 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 20,324 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-21 06:56:31
合計ジャッジ時間 1,169 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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