結果

問題 No.207 世界のなんとか
ユーザー villachvillach
提出日時 2017-09-19 19:47:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 344 bytes
コンパイル時間 3,263 ms
コンパイル使用メモリ 74,272 KB
実行使用メモリ 41,364 KB
最終ジャッジ日時 2024-11-08 05:42:25
合計ジャッジ時間 6,472 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,168 KB
testcase_01 AC 126 ms
41,240 KB
testcase_02 AC 118 ms
40,176 KB
testcase_03 AC 129 ms
40,896 KB
testcase_04 AC 128 ms
41,128 KB
testcase_05 AC 119 ms
40,472 KB
testcase_06 AC 116 ms
40,124 KB
testcase_07 AC 126 ms
41,364 KB
testcase_08 AC 127 ms
41,096 KB
testcase_09 AC 125 ms
40,976 KB
testcase_10 AC 131 ms
41,012 KB
testcase_11 AC 131 ms
41,264 KB
testcase_12 AC 125 ms
40,216 KB
testcase_13 AC 137 ms
40,976 KB
testcase_14 AC 119 ms
40,560 KB
testcase_15 AC 138 ms
41,260 KB
testcase_16 AC 117 ms
40,268 KB
testcase_17 AC 128 ms
41,308 KB
testcase_18 AC 126 ms
40,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class N207 {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b = sc.nextInt();
		
		for(int i = a;i <= b;++i){
			if(i % 3 == 0) System.out.println(i);
			else if(String.valueOf(i).contains("3")) System.out.println(i);
		}
	}
}
0