結果

問題 No.207 世界のなんとか
ユーザー P48251659P48251659
提出日時 2015-06-14 03:38:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 506 bytes
コンパイル時間 3,534 ms
コンパイル使用メモリ 75,000 KB
実行使用メモリ 41,828 KB
最終ジャッジ日時 2024-10-09 10:23:28
合計ジャッジ時間 6,960 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
41,400 KB
testcase_01 AC 133 ms
41,408 KB
testcase_02 AC 125 ms
40,420 KB
testcase_03 AC 138 ms
41,520 KB
testcase_04 AC 137 ms
41,504 KB
testcase_05 AC 138 ms
41,456 KB
testcase_06 AC 136 ms
41,528 KB
testcase_07 AC 134 ms
41,448 KB
testcase_08 AC 138 ms
41,552 KB
testcase_09 AC 139 ms
41,828 KB
testcase_10 AC 139 ms
41,444 KB
testcase_11 AC 136 ms
41,576 KB
testcase_12 AC 144 ms
41,520 KB
testcase_13 AC 141 ms
41,176 KB
testcase_14 AC 127 ms
40,236 KB
testcase_15 AC 141 ms
41,228 KB
testcase_16 AC 136 ms
41,188 KB
testcase_17 AC 135 ms
41,432 KB
testcase_18 AC 133 ms
41,308 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;
			} else if(n % 10 == 3) {
				System.out.println(n);
				continue;
			}

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

	}

}
0