結果

問題 No.207 世界のなんとか
ユーザー dogwood0424dogwood0424
提出日時 2017-11-28 00:15:22
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 476 bytes
コンパイル時間 4,275 ms
コンパイル使用メモリ 74,876 KB
実行使用メモリ 46,412 KB
最終ジャッジ日時 2024-05-05 14:01:02
合計ジャッジ時間 12,319 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
46,404 KB
testcase_01 AC 130 ms
41,184 KB
testcase_02 AC 140 ms
41,224 KB
testcase_03 AC 133 ms
41,140 KB
testcase_04 AC 131 ms
41,084 KB
testcase_05 AC 135 ms
41,108 KB
testcase_06 AC 131 ms
41,288 KB
testcase_07 AC 133 ms
40,932 KB
testcase_08 AC 128 ms
41,296 KB
testcase_09 AC 136 ms
41,080 KB
testcase_10 AC 136 ms
41,056 KB
testcase_11 AC 134 ms
41,576 KB
testcase_12 AC 124 ms
40,416 KB
testcase_13 AC 139 ms
41,244 KB
testcase_14 AC 138 ms
40,904 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No207 {
	public static void main(String[]args) {
		Scanner sc = new Scanner(System.in);
		int a,b;
		do {
			a=sc.nextInt();
			b=sc.nextInt();
		}while(!(b-a>=0 && b-a<=100));

		for(int i=a;i<b+1;i++) {
			if(i%3==0) {
				System.out.println(i);
			}
			else {
			int c = i;
			for(int j=10;j<b+1;j=j*10) {

				int d = c%10;
				 c = c/10;
				if(d==3 || c==3) {
					System.out.println(i);
					break;
				}

			}
			}
		}



	}

}
0