結果

問題 No.207 世界のなんとか
ユーザー dogwood0424dogwood0424
提出日時 2017-11-28 00:09:28
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 475 bytes
コンパイル時間 2,939 ms
コンパイル使用メモリ 74,040 KB
実行使用メモリ 41,292 KB
最終ジャッジ日時 2024-05-05 13:59:12
合計ジャッジ時間 5,823 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 108 ms
40,088 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 97 ms
40,028 KB
testcase_07 AC 111 ms
41,240 KB
testcase_08 AC 108 ms
40,920 KB
testcase_09 AC 109 ms
41,088 KB
testcase_10 AC 123 ms
41,196 KB
testcase_11 AC 114 ms
40,824 KB
testcase_12 WA -
testcase_13 AC 114 ms
41,000 KB
testcase_14 WA -
testcase_15 RE -
testcase_16 AC 111 ms
41,292 KB
testcase_17 AC 100 ms
40,180 KB
testcase_18 AC 112 ms
41,260 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%j;
				 c = c/10;
				if(d==3 || c==3) {
					System.out.println(i);
					break;
				}

			}
			}
		}



	}

}
0