結果

問題 No.316 もっと刺激的なFizzBuzzをください
ユーザー tails
提出日時 2015-12-09 18:00:56
言語 C90
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 175 bytes
コンパイル時間 834 ms
コンパイル使用メモリ 19,968 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-15 05:52:49
合計ジャッジ時間 1,800 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 26 WA * 7
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:1:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
    1 | g(a,b){return a?g(b%a,a):b;}
      | ^
main.c: In function ‘g’:
main.c:1:1: warning: type of ‘a’ defaults to ‘int’ [-Wimplicit-int]
main.c:1:1: warning: type of ‘b’ defaults to ‘int’ [-Wimplicit-int]
main.c: At top level:
main.c:2:1: warning: return type defaults to ‘int’ [-Wimplicit-int]
    2 | main(n,a,b,c,d){
      | ^~~~
main.c: In function ‘main’:
main.c:2:1: warning: type of ‘n’ defaults to ‘int’ [-Wimplicit-int]
main.c:2:1: warning: type of ‘a’ defaults to ‘int’ [-Wimplicit-int]
main.c:2:1: warning: type of ‘b’ defaults to ‘int’ [-Wimplicit-int]
main.c:2:1: warning: type of ‘c’ defaults to ‘int’ [-Wimplicit-int]
main.c:2:1: warning: type of ‘d’ defaults to ‘int’ [-Wimplicit-int]
main.c:3:9: warning: implicit declaration of function ‘scanf’ [-Wimplicit-function-declaration]
    3 |         scanf("%d%d%d%d",&n,&a,&b,&c);
      |         ^~~~~
main.c:1:1: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’
  +++ |+#include <stdio.h>
    1 | g(a,b){return a?g(b%a,a):b;}
main.c:3:9: warning: incompatible implicit declaration of built-in function ‘scanf’ [-Wbuiltin-declaration-mismatch]
    3 |         scanf("%d%d%d%d",&n,&a,&b,&c);
      |         ^~~~~
main.c:3:9: note: include ‘<stdio.h>’ or provide a declaration of ‘scanf’
main.c:5:9: warning: implicit declaration of function ‘printf’ [-Wimplicit-function-declaration]
    5 |         printf("%d",n/a+n/b+n/c-n/d-n*g(a,c)/a/c-n*g(b,c)/b/c+n*g(c,d)/c/d);
      |         ^~~~~~
main.c:5:9: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’
main.c:5:9: warning: incompatible implicit declaration of built-in function ‘printf’ [-Wbuiltin-declaration-mismatch]
main.c:5:9: note: include ‘<stdio.h>’ or provide a declaration of ‘printf’

ソースコード

diff #

g(a,b){return a?g(b%a,a):b;}
main(n,a,b,c,d){
	scanf("%d%d%d%d",&n,&a,&b,&c);
	d=a*b/g(a,b);
	printf("%d",n/a+n/b+n/c-n/d-n*g(a,c)/a/c-n*g(b,c)/b/c+n*g(c,d)/c/d);
	return 0;
}
0