結果

問題 No.207 世界のなんとか
ユーザー nCk_cvnCk_cv
提出日時 2015-09-19 14:58:27
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 525 bytes
コンパイル時間 2,270 ms
コンパイル使用メモリ 76,788 KB
実行使用メモリ 54,516 KB
最終ジャッジ日時 2024-10-09 10:33:15
合計ジャッジ時間 5,576 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,064 KB
testcase_01 AC 132 ms
54,220 KB
testcase_02 AC 140 ms
53,744 KB
testcase_03 AC 134 ms
54,008 KB
testcase_04 AC 132 ms
53,900 KB
testcase_05 AC 135 ms
54,036 KB
testcase_06 AC 132 ms
53,880 KB
testcase_07 AC 130 ms
53,924 KB
testcase_08 AC 129 ms
53,896 KB
testcase_09 AC 135 ms
54,104 KB
testcase_10 AC 138 ms
54,020 KB
testcase_11 AC 134 ms
54,188 KB
testcase_12 AC 135 ms
54,460 KB
testcase_13 AC 132 ms
53,852 KB
testcase_14 AC 133 ms
54,268 KB
testcase_15 AC 135 ms
54,108 KB
testcase_16 AC 131 ms
54,124 KB
testcase_17 AC 131 ms
53,996 KB
testcase_18 AC 131 ms
54,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;
import java.io.*;
public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
	    int A = sc.nextInt();
	    int B= sc.nextInt();
	    for(; A<=B; A++){
	        if(A%3==0){
	            System.out.println(A);
	            continue;
	        }
	        int tmp = A;
	        while(tmp!=0){
	            if(tmp%10==3){
	                System.out.println(A);
	                break;
	            }
	            tmp/=10;
	        }
	    }
	}

}
0