結果

問題 No.207 世界のなんとか
ユーザー scachescache
提出日時 2015-09-19 14:55:52
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 623 bytes
コンパイル時間 3,367 ms
コンパイル使用メモリ 75,020 KB
実行使用メモリ 41,444 KB
最終ジャッジ日時 2024-07-19 07:56:58
合計ジャッジ時間 6,728 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 129 ms
41,168 KB
testcase_02 WA -
testcase_03 AC 133 ms
41,100 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 128 ms
40,868 KB
testcase_07 AC 130 ms
40,972 KB
testcase_08 AC 129 ms
41,240 KB
testcase_09 AC 138 ms
41,312 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 117 ms
39,960 KB
testcase_17 AC 130 ms
41,356 KB
testcase_18 AC 132 ms
40,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import java.util.Scanner;

/**
 * アルゴリズム勉強会 第33回
 * yukicoder no.207 世界のなんとか
 * @author scache
 *
 */
public class Main207 {
	public static void main(String[] args) {
		Main207 p = new Main207();
	}

	public Main207() {
		Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int b =sc.nextInt();
		
		solve(a,b);
	}

	public void solve(int a, int b) {
		
		for(int m=a;m<=b;m++){
			if(m%3==0){
				System.out.println(m);
			}else{
				int n = m;
				for(long i=10;i<10000000000L;i*=10){
					if(n%10==3){
						System.out.println(m);
					}
					n/=10;
				}
			}
		}
	}

}
0