結果

問題 No.207 世界のなんとか
ユーザー CecilCecil
提出日時 2022-12-20 11:33:35
言語 Java
(openjdk 23)
結果
AC  
実行時間 154 ms / 5,000 ms
コード長 706 bytes
コンパイル時間 2,162 ms
コンパイル使用メモリ 73,936 KB
実行使用メモリ 50,120 KB
最終ジャッジ日時 2024-11-18 01:45:18
合計ジャッジ時間 5,715 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
50,120 KB
testcase_01 AC 135 ms
41,144 KB
testcase_02 AC 142 ms
41,280 KB
testcase_03 AC 138 ms
41,184 KB
testcase_04 AC 139 ms
41,428 KB
testcase_05 AC 154 ms
41,084 KB
testcase_06 AC 146 ms
41,136 KB
testcase_07 AC 144 ms
40,876 KB
testcase_08 AC 148 ms
41,136 KB
testcase_09 AC 147 ms
41,048 KB
testcase_10 AC 150 ms
41,116 KB
testcase_11 AC 152 ms
41,400 KB
testcase_12 AC 148 ms
41,012 KB
testcase_13 AC 142 ms
41,644 KB
testcase_14 AC 137 ms
40,808 KB
testcase_15 AC 138 ms
41,108 KB
testcase_16 AC 135 ms
41,000 KB
testcase_17 AC 137 ms
41,264 KB
testcase_18 AC 140 ms
41,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String args[]) {
		Scanner scan = new Scanner(System.in);

		int a = scan.hasNextInt() ? scan.nextInt() : -1;
		int b = scan.hasNextInt() ? scan.nextInt() : -1;
		if (a > 2000000000 || a < 1 || b > 2000000000 || b < 1) {
			System.out.println("入力エラー1");
			return;
		}
		int count = b - a;
		if (count > 99 || count < 0 ) {
			System.out.println("入力エラー2");
			return;
		}
		
		for(int i = a; i <= b; i++){
		    if(i >= 3){
    		    if(Integer.toString(i).contains("3")){
    		         System.out.println(i);
	    	    }
		        else if(i % 3 == 0){
		            System.out.println(i);
		        }
		    }
		}

	}
}
0