結果

問題 No.207 世界のなんとか
ユーザー kuramubonnkuramubonn
提出日時 2023-02-01 20:13:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 436 bytes
コンパイル時間 2,193 ms
コンパイル使用メモリ 74,272 KB
実行使用メモリ 54,276 KB
最終ジャッジ日時 2024-07-01 13:49:13
合計ジャッジ時間 5,653 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,268 KB
testcase_01 AC 133 ms
54,276 KB
testcase_02 AC 141 ms
54,068 KB
testcase_03 AC 136 ms
54,012 KB
testcase_04 AC 136 ms
54,108 KB
testcase_05 AC 139 ms
53,992 KB
testcase_06 AC 135 ms
53,804 KB
testcase_07 AC 134 ms
54,124 KB
testcase_08 AC 134 ms
53,848 KB
testcase_09 AC 139 ms
54,000 KB
testcase_10 AC 140 ms
54,068 KB
testcase_11 AC 136 ms
53,808 KB
testcase_12 AC 141 ms
53,620 KB
testcase_13 AC 140 ms
54,036 KB
testcase_14 AC 140 ms
53,832 KB
testcase_15 AC 140 ms
53,960 KB
testcase_16 AC 135 ms
53,808 KB
testcase_17 AC 131 ms
54,008 KB
testcase_18 AC 132 ms
53,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Main{
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt(), b = sc.nextInt();
		for(int i = a ; i <= b ; i++) {
			if(i % 3 == 0) {
				System.out.println(i);
				continue;
			}
			String str = String.valueOf(i);
			char[] Array = str.toCharArray();
			for(char ch:Array) {
				if(ch == '3') {
					System.out.println(i);
					break;
				}
			}
		}
	}
}
0