結果

問題 No.207 世界のなんとか
ユーザー AoiroFukurouAoiroFukurou
提出日時 2015-05-31 14:23:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 436 bytes
コンパイル時間 3,380 ms
コンパイル使用メモリ 74,352 KB
実行使用メモリ 41,844 KB
最終ジャッジ日時 2024-10-09 10:21:11
合計ジャッジ時間 6,678 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,432 KB
testcase_01 AC 129 ms
41,844 KB
testcase_02 AC 133 ms
41,736 KB
testcase_03 AC 134 ms
41,560 KB
testcase_04 AC 120 ms
41,644 KB
testcase_05 AC 135 ms
41,268 KB
testcase_06 AC 129 ms
41,316 KB
testcase_07 AC 132 ms
41,400 KB
testcase_08 AC 128 ms
41,308 KB
testcase_09 AC 134 ms
41,520 KB
testcase_10 AC 139 ms
41,404 KB
testcase_11 AC 132 ms
41,572 KB
testcase_12 AC 121 ms
41,432 KB
testcase_13 AC 134 ms
41,236 KB
testcase_14 AC 139 ms
41,300 KB
testcase_15 AC 136 ms
41,720 KB
testcase_16 AC 130 ms
41,012 KB
testcase_17 AC 129 ms
41,176 KB
testcase_18 AC 131 ms
41,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package b2015_5_31;

import java.util.Scanner;

public class SekaiNantoka {
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(match(i)){
		System.out.println(i);
	}
	}

}

private static boolean match(int i){
	if(i%3==0){
		return true;
	}
	while(i>0){
		if(i%10==3){
			return true;
		}else{
			i /= 10;
		}
	}
		return false;
}
}
0