結果

問題 No.207 世界のなんとか
ユーザー mits58mits58
提出日時 2016-05-05 14:33:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 500 bytes
コンパイル時間 2,498 ms
コンパイル使用メモリ 75,448 KB
実行使用メモリ 54,476 KB
最終ジャッジ日時 2024-10-09 10:52:14
合計ジャッジ時間 5,823 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,024 KB
testcase_01 AC 116 ms
53,120 KB
testcase_02 AC 139 ms
54,092 KB
testcase_03 AC 133 ms
53,812 KB
testcase_04 AC 131 ms
53,996 KB
testcase_05 AC 132 ms
54,028 KB
testcase_06 AC 130 ms
54,092 KB
testcase_07 AC 127 ms
53,868 KB
testcase_08 AC 129 ms
54,120 KB
testcase_09 AC 134 ms
54,124 KB
testcase_10 AC 135 ms
54,084 KB
testcase_11 AC 134 ms
54,172 KB
testcase_12 AC 137 ms
54,416 KB
testcase_13 AC 137 ms
54,168 KB
testcase_14 AC 135 ms
53,864 KB
testcase_15 AC 137 ms
54,476 KB
testcase_16 AC 134 ms
54,192 KB
testcase_17 AC 132 ms
53,852 KB
testcase_18 AC 132 ms
54,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
	static boolean f(long x){
		if(x%3==0) return true;
		else{
			String str=Long.toString(x);
			for(int i=0;i<str.length();i++){
				if(str.charAt(i)=='3') return true;
			}
			return false;
		}
	}
	public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        while(sc.hasNext()){
        	long a=sc.nextLong();
        	long b=sc.nextLong();
        	for(long i=a;i<=b;i++) if(f(i)) System.out.println(i);
        }
    }
}
0