結果

問題 No.207 世界のなんとか
ユーザー metasequo
提出日時 2015-06-07 17:24:35
言語 C90
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 5,000 ms
コード長 291 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 22,912 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-26 03:09:13
合計ジャッジ時間 1,000 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:14:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |         scanf("%d %d", &a, &b);
      |         ^~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <math.h>
int three(int n){
	int a = pow(10, (int)log10(n)), m=n;
	while(a!=0){
		if(m/a == 3)	return 1;
		m %= a;
		a /= 10;
	}
	return 0;
}
int main(){
	int a, b, i;
	scanf("%d %d", &a, &b);
	for(i=a; i<=b; i++){
		if(i%3==0 || three(i))	printf("%d\n", i);;
	}
}
0