結果

問題 No.207 世界のなんとか
ユーザー GrenacheGrenache
提出日時 2015-05-15 22:24:17
言語 Java
(openjdk 23)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 454 bytes
コンパイル時間 3,745 ms
コンパイル使用メモリ 74,632 KB
実行使用メモリ 54,220 KB
最終ジャッジ日時 2024-10-09 09:21:38
合計ジャッジ時間 7,343 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main_yukicoder207 {
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int a = sc.nextInt();
		int b = sc.nextInt();

		for (int i = a; i <= b; i++) {
			if (i % 3 == 0) {
				System.out.println(i);
			} else {
				int tmp = i;
				while (tmp != 0) {
					if (tmp % 10 == 3) {
						System.out.println(i);
						break;
					}
					tmp /= 10;
				}
			}
		}
		
		sc.close();
	}
}
0