結果

問題 No.207 世界のなんとか
ユーザー dogwood0424dogwood0424
提出日時 2017-11-28 00:15:22
言語 Java
(openjdk 23)
結果
TLE  
実行時間 -
コード長 476 bytes
コンパイル時間 2,990 ms
コンパイル使用メモリ 76,852 KB
実行使用メモリ 81,108 KB
最終ジャッジ日時 2024-11-27 11:56:09
合計ジャッジ時間 11,714 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
39,836 KB
testcase_01 AC 113 ms
39,960 KB
testcase_02 AC 102 ms
39,872 KB
testcase_03 AC 117 ms
40,872 KB
testcase_04 AC 110 ms
40,252 KB
testcase_05 AC 105 ms
39,900 KB
testcase_06 AC 100 ms
40,000 KB
testcase_07 AC 109 ms
41,024 KB
testcase_08 AC 99 ms
40,152 KB
testcase_09 AC 120 ms
40,960 KB
testcase_10 AC 112 ms
39,776 KB
testcase_11 AC 114 ms
40,384 KB
testcase_12 AC 117 ms
39,892 KB
testcase_13 AC 116 ms
41,052 KB
testcase_14 AC 117 ms
41,020 KB
testcase_15 TLE -
testcase_16 AC 116 ms
41,024 KB
testcase_17 AC 108 ms
41,128 KB
testcase_18 AC 114 ms
81,108 KB
権限があれば一括ダウンロードができます

ソースコード

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