結果

問題 No.207 世界のなんとか
ユーザー YOSHIYOSHI
提出日時 2021-03-05 21:21:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 541 bytes
コンパイル時間 3,509 ms
コンパイル使用メモリ 74,924 KB
実行使用メモリ 41,468 KB
最終ジャッジ日時 2024-10-07 00:03:02
合計ジャッジ時間 6,430 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,176 KB
testcase_01 AC 125 ms
40,920 KB
testcase_02 AC 130 ms
41,044 KB
testcase_03 AC 130 ms
41,444 KB
testcase_04 AC 126 ms
41,200 KB
testcase_05 AC 131 ms
41,252 KB
testcase_06 AC 127 ms
41,336 KB
testcase_07 AC 113 ms
39,848 KB
testcase_08 AC 111 ms
39,744 KB
testcase_09 AC 112 ms
39,944 KB
testcase_10 AC 121 ms
41,392 KB
testcase_11 AC 117 ms
40,800 KB
testcase_12 AC 114 ms
39,848 KB
testcase_13 AC 130 ms
40,768 KB
testcase_14 AC 134 ms
41,468 KB
testcase_15 AC 115 ms
40,132 KB
testcase_16 AC 123 ms
41,272 KB
testcase_17 AC 127 ms
40,772 KB
testcase_18 AC 123 ms
41,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.IOException;
import java.util.Scanner;

public class No00000207_Main {

	public static void main(String[] args) throws IOException {

		Scanner scan = new Scanner(System.in);
		int a = scan.nextInt();
		int b = scan.nextInt();

		for(int i = a; i <= b; i++) {
			if(i % 3 == 0 || with3(String.valueOf(i))) {
				System.out.println(i);
			}
		}
		scan.close();
	}

	private static boolean with3(String str) {
		for(int i = 0; i < str.length(); i++) {
			if(str.charAt(i) == '3') {
				return true;
			}
		}
		return false;
	}
}
0