結果

問題 No.152 貯金箱の消失
ユーザー 👑 testestest
提出日時 2017-01-19 11:44:22
言語 C90
(gcc 12.3.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 96 bytes
コンパイル時間 1,018 ms
コンパイル使用メモリ 22,528 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 01:30:06
合計ジャッジ時間 814 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 1 WA * 11
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:1:1: warning: data definition has no type or storage class
    1 | L;f(x,y){return 8*x*(x+=y)>L?0:x%2+f(x,x-y)+f(x,y);}main(){L=!printf("%d",f(2,scanf("%d",&L)));}
      | ^
main.c:1:1: warning: type defaults to ‘int’ in declaration of ‘L’ [-Wimplicit-int]
main.c:1:3: warning: return type defaults to ‘int’ [-Wimplicit-int]
    1 | L;f(x,y){return 8*x*(x+=y)>L?0:x%2+f(x,x-y)+f(x,y);}main(){L=!printf("%d",f(2,scanf("%d",&L)));}
      |   ^
main.c: In function ‘f’:
main.c:1:3: warning: type of ‘x’ defaults to ‘int’ [-Wimplicit-int]
main.c:1:3: warning: type of ‘y’ defaults to ‘int’ [-Wimplicit-int]
main.c: At top level:
main.c:1:53: warning: return type defaults to ‘int’ [-Wimplicit-int]
    1 | L;f(x,y){return 8*x*(x+=y)>L?0:x%2+f(x,x-y)+f(x,y);}main(){L=!printf("%d",f(2,scanf("%d",&L)));}
      |                                                     ^~~~
main.c: In function ‘main’:
main.c:1:63: warning: implicit declaration of function ‘printf’ [-Wimplicit-function-declaration]
    1 | L;f(x,y){return 8*x*(x+=y)>L?0:x%2+f(x,x-y)+f(x,y);}main(){L=!printf("%d",f(2,scanf("%d",&L)));}
      |                                                               ^~~~~~
main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’
  +++ |+#include <stdio.h>
    1 | L;f(x,y){return 8*x*(x+=y)>L?0:x%2+f(x,x-y)+f(x,y);}main(){L=!printf("%d",f(2,scanf("%d",&L)));}
main.c:1:63: warning: incompatible implicit declaration of built-in function ‘printf’ [-Wbuiltin-declaration-mismatch]
    1 | L;f(x,y){return 8*x*(x+=y)>L?0:x%2+f(x,x-y)+f(x,y);}main(){L=!printf("%d",f(2,scanf("%d",&L)));}
      |                                                               ^~~~~~
main.c:1:63: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’
main.c:1:79: warning: implicit declaration of function ‘scanf’ [-Wimplicit-function-declaration]
    1 | L;f(x,y){return 8*x*(x+=y)>L?0:x%2+f(x,x-y)+f(x,y);}main(){L=!pr

ソースコード

diff #

L;f(x,y){return 8*x*(x+=y)>L?0:x%2+f(x,x-y)+f(x,y);}main(){L=!printf("%d",f(2,scanf("%d",&L)));}
0