結果

問題 No.207 世界のなんとか
ユーザー brave_reverse_brave_reverse_
提出日時 2016-01-07 14:24:05
言語 Java
(openjdk 23)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 404 bytes
コンパイル時間 3,466 ms
コンパイル使用メモリ 74,880 KB
実行使用メモリ 54,512 KB
最終ジャッジ日時 2024-10-09 10:42:07
合計ジャッジ時間 6,508 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,068 KB
testcase_01 AC 114 ms
52,584 KB
testcase_02 AC 137 ms
54,100 KB
testcase_03 AC 133 ms
54,148 KB
testcase_04 AC 136 ms
54,120 KB
testcase_05 AC 135 ms
54,016 KB
testcase_06 AC 132 ms
53,936 KB
testcase_07 AC 117 ms
52,828 KB
testcase_08 AC 130 ms
54,512 KB
testcase_09 AC 138 ms
53,732 KB
testcase_10 AC 131 ms
53,792 KB
testcase_11 AC 134 ms
53,832 KB
testcase_12 AC 135 ms
54,204 KB
testcase_13 AC 134 ms
54,196 KB
testcase_14 AC 133 ms
54,232 KB
testcase_15 AC 133 ms
54,396 KB
testcase_16 AC 129 ms
53,880 KB
testcase_17 AC 128 ms
54,104 KB
testcase_18 AC 128 ms
54,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicorder;
import java.util.Scanner;

public class QNo207 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		for(int n=a;n<=b;n++){
			if(n%3==0||exist3(n)) System.out.println(n);
		}
	}
	private static boolean exist3(int n){
		if(n==0) return false;
		if(n%10==3) return true;
		else return exist3(n/10);
	}

}
0