結果

問題 No.207 世界のなんとか
ユーザー marumaru
提出日時 2017-09-24 08:33:17
言語 Java
(openjdk 23)
結果
AC  
実行時間 148 ms / 5,000 ms
コード長 493 bytes
コンパイル時間 4,690 ms
コンパイル使用メモリ 75,012 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-11-14 06:52:22
合計ジャッジ時間 7,155 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
54,228 KB
testcase_01 AC 141 ms
54,096 KB
testcase_02 AC 146 ms
54,108 KB
testcase_03 AC 141 ms
54,212 KB
testcase_04 AC 141 ms
54,048 KB
testcase_05 AC 144 ms
53,864 KB
testcase_06 AC 141 ms
54,156 KB
testcase_07 AC 139 ms
53,856 KB
testcase_08 AC 139 ms
54,136 KB
testcase_09 AC 144 ms
54,144 KB
testcase_10 AC 146 ms
54,136 KB
testcase_11 AC 144 ms
54,156 KB
testcase_12 AC 146 ms
53,956 KB
testcase_13 AC 148 ms
53,908 KB
testcase_14 AC 147 ms
54,148 KB
testcase_15 AC 143 ms
54,068 KB
testcase_16 AC 137 ms
53,884 KB
testcase_17 AC 138 ms
54,136 KB
testcase_18 AC 134 ms
53,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.LinkedHashSet;
import java.util.Scanner;
import java.util.Set;

public class Sekaino {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int from = scan.nextInt();
		int to = scan.nextInt();
		Set<Integer> threeList = new LinkedHashSet<Integer>();
		for (int i = from; i <= to; i++) {
			if (i % 3 == 0 || String.valueOf(i).contains("3")) {
				threeList.add(i);
			}
		}
		for (int num : threeList) {
			System.out.println(num);
		}

	}

}
0