結果

問題 No.207 世界のなんとか
ユーザー villachvillach
提出日時 2017-09-19 19:44:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 366 bytes
コンパイル時間 3,801 ms
コンパイル使用メモリ 75,120 KB
実行使用メモリ 41,748 KB
最終ジャッジ日時 2024-11-08 05:41:45
合計ジャッジ時間 6,687 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 132 ms
40,780 KB
testcase_02 WA -
testcase_03 AC 129 ms
41,144 KB
testcase_04 AC 131 ms
41,232 KB
testcase_05 WA -
testcase_06 AC 116 ms
40,184 KB
testcase_07 AC 130 ms
40,992 KB
testcase_08 AC 117 ms
39,700 KB
testcase_09 AC 136 ms
41,112 KB
testcase_10 AC 135 ms
41,156 KB
testcase_11 AC 137 ms
41,196 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 137 ms
41,380 KB
testcase_16 AC 131 ms
40,932 KB
testcase_17 AC 132 ms
41,348 KB
testcase_18 AC 130 ms
40,960 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 || ((i % 100) % 10) == 3 || ((i % 100) >= 30 && (i % 100) < 40) || (i >= 300 && i < 400)) System.out.println(i);
		}
	}
}
0