結果

問題 No.207 世界のなんとか
ユーザー veroomveroom
提出日時 2016-10-10 14:13:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 640 bytes
コンパイル時間 6,972 ms
コンパイル使用メモリ 74,936 KB
実行使用メモリ 41,532 KB
最終ジャッジ日時 2024-11-22 00:50:31
合計ジャッジ時間 10,147 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,260 KB
testcase_01 AC 128 ms
41,404 KB
testcase_02 AC 135 ms
41,380 KB
testcase_03 AC 135 ms
41,384 KB
testcase_04 AC 119 ms
41,388 KB
testcase_05 AC 133 ms
41,380 KB
testcase_06 AC 128 ms
41,496 KB
testcase_07 AC 131 ms
41,476 KB
testcase_08 AC 131 ms
41,384 KB
testcase_09 AC 131 ms
41,436 KB
testcase_10 AC 137 ms
41,156 KB
testcase_11 AC 145 ms
41,264 KB
testcase_12 AC 135 ms
41,380 KB
testcase_13 AC 138 ms
41,532 KB
testcase_14 AC 140 ms
41,368 KB
testcase_15 AC 144 ms
41,420 KB
testcase_16 AC 112 ms
41,368 KB
testcase_17 AC 131 ms
41,252 KB
testcase_18 AC 130 ms
41,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Yukicoder {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		int A = sc.nextInt();
		int B = sc.nextInt();
		boolean D = false;

		for (int i = A; i <= B; i++) {

			String j = String.valueOf(i);
			String[] strArray = new String[j.length()];
			for (int m = 0; m < j.length(); m++) {
				String str2 = String.valueOf(j.charAt(m));
				strArray[m] = str2;
				int a = Integer.valueOf(strArray[m]);
				if (a == 3) {
					D = true;
					break;
				}
			}
			if (D == true || (i % 3) == 0) {
				System.out.println(i);
			}
			D = false;
		}
	}
}
0