結果

問題 No.207 世界のなんとか
ユーザー velfare_nagatavelfare_nagata
提出日時 2016-10-04 20:36:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 702 bytes
コンパイル時間 3,369 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 55,716 KB
最終ジャッジ日時 2024-05-01 12:26:52
合計ジャッジ時間 6,762 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
55,716 KB
testcase_01 AC 133 ms
54,300 KB
testcase_02 AC 138 ms
54,096 KB
testcase_03 AC 133 ms
54,144 KB
testcase_04 AC 132 ms
54,100 KB
testcase_05 AC 134 ms
53,788 KB
testcase_06 AC 131 ms
54,032 KB
testcase_07 AC 132 ms
54,344 KB
testcase_08 AC 128 ms
54,076 KB
testcase_09 AC 138 ms
54,156 KB
testcase_10 AC 140 ms
54,296 KB
testcase_11 AC 142 ms
54,036 KB
testcase_12 AC 133 ms
52,808 KB
testcase_13 AC 139 ms
53,944 KB
testcase_14 AC 145 ms
53,848 KB
testcase_15 AC 139 ms
54,152 KB
testcase_16 AC 136 ms
54,068 KB
testcase_17 AC 138 ms
53,904 KB
testcase_18 AC 132 ms
53,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Answer {

	/**
	 * A以上B以下の整数のうち、3の倍数および3の付く数を、小さい順に出力してください。
	 *
	 * なお、「3の付く数」とは、10進数表記にした時、少なくとも1つの桁が3であるような数のことです。
	 */
	public static void main(String[] args) {
		// パラメータ取得
		 Scanner sc = new Scanner(System.in);
		 int a = sc.nextInt();
		 int b = sc.nextInt();
		 sc.close();
//
//		int a = 1700603696;
//		int b = 1700603714;
//
		for(int i = a; i <= b; i++) {
			if( (i % 3 == 0) || String.valueOf(i).contains("3") ) {
				System.out.println(i);
			}
		}
	}
}
0