結果

問題 No.207 世界のなんとか
ユーザー SuunnSuunn
提出日時 2018-11-22 09:26:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 422 bytes
コンパイル時間 2,247 ms
コンパイル使用メモリ 74,544 KB
実行使用メモリ 41,740 KB
最終ジャッジ日時 2024-06-06 21:45:25
合計ジャッジ時間 5,766 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
40,060 KB
testcase_01 AC 135 ms
41,316 KB
testcase_02 AC 128 ms
40,212 KB
testcase_03 AC 121 ms
39,956 KB
testcase_04 AC 133 ms
41,056 KB
testcase_05 AC 137 ms
41,072 KB
testcase_06 AC 132 ms
41,076 KB
testcase_07 AC 132 ms
41,236 KB
testcase_08 AC 123 ms
40,068 KB
testcase_09 AC 126 ms
40,108 KB
testcase_10 AC 140 ms
41,392 KB
testcase_11 AC 135 ms
41,176 KB
testcase_12 AC 135 ms
40,908 KB
testcase_13 AC 139 ms
41,196 KB
testcase_14 AC 140 ms
41,484 KB
testcase_15 AC 140 ms
41,212 KB
testcase_16 AC 136 ms
41,740 KB
testcase_17 AC 133 ms
41,196 KB
testcase_18 AC 119 ms
39,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
	

public class Main{
	
	
	public static void main(String args[])throws Exception{
		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||contain3(i)){
				System.out.println(i);
			}
		}
	}

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

}
0