結果

問題 No.207 世界のなんとか
ユーザー velfare_nagatavelfare_nagata
提出日時 2016-10-04 20:36:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 702 bytes
コンパイル時間 4,089 ms
コンパイル使用メモリ 74,336 KB
実行使用メモリ 41,492 KB
最終ジャッジ日時 2024-11-21 16:48:30
合計ジャッジ時間 7,100 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,376 KB
testcase_01 AC 127 ms
41,388 KB
testcase_02 AC 136 ms
41,256 KB
testcase_03 AC 130 ms
41,420 KB
testcase_04 AC 128 ms
41,172 KB
testcase_05 AC 134 ms
41,492 KB
testcase_06 AC 132 ms
41,252 KB
testcase_07 AC 115 ms
41,336 KB
testcase_08 AC 129 ms
41,180 KB
testcase_09 AC 137 ms
41,168 KB
testcase_10 AC 138 ms
41,300 KB
testcase_11 AC 125 ms
40,320 KB
testcase_12 AC 133 ms
41,284 KB
testcase_13 AC 134 ms
41,364 KB
testcase_14 AC 134 ms
41,444 KB
testcase_15 AC 133 ms
41,280 KB
testcase_16 AC 127 ms
41,376 KB
testcase_17 AC 117 ms
41,360 KB
testcase_18 AC 121 ms
39,868 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