結果

問題 No.207 世界のなんとか
ユーザー P48251659P48251659
提出日時 2015-06-14 03:48:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 432 bytes
コンパイル時間 3,554 ms
コンパイル使用メモリ 77,532 KB
実行使用メモリ 49,276 KB
最終ジャッジ日時 2024-10-09 10:23:42
合計ジャッジ時間 6,491 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
49,276 KB
testcase_01 AC 129 ms
40,996 KB
testcase_02 AC 135 ms
41,428 KB
testcase_03 AC 135 ms
41,236 KB
testcase_04 AC 128 ms
41,284 KB
testcase_05 AC 130 ms
41,516 KB
testcase_06 AC 128 ms
41,216 KB
testcase_07 AC 126 ms
41,344 KB
testcase_08 AC 128 ms
40,968 KB
testcase_09 AC 132 ms
41,580 KB
testcase_10 AC 119 ms
40,236 KB
testcase_11 AC 133 ms
41,272 KB
testcase_12 AC 116 ms
40,184 KB
testcase_13 AC 134 ms
41,096 KB
testcase_14 AC 131 ms
41,544 KB
testcase_15 AC 132 ms
41,292 KB
testcase_16 AC 129 ms
41,492 KB
testcase_17 AC 129 ms
41,688 KB
testcase_18 AC 127 ms
41,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class test2 {

	public static void main(String[] args) {

		Scanner in = new Scanner(System.in);
		int n = in.nextInt();
		int m = in.nextInt();

		for(;n <= m; n++) {
			if(n % 3 == 0) {
				System.out.println(n);
				continue;
			}

			// なんだかなぁ
			int tmp = n;
			while(tmp > 0) {
				if(tmp % 10 == 3) {
					System.out.println(n);
					break;
				}
				tmp /= 10;
			}
		}

	}

}
0