結果

問題 No.207 世界のなんとか
ユーザー 8130Tsk8130Tsk
提出日時 2015-07-23 21:45:02
言語 Java
(openjdk 23)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 397 bytes
コンパイル時間 3,427 ms
コンパイル使用メモリ 78,200 KB
実行使用メモリ 41,780 KB
最終ジャッジ日時 2024-10-09 10:27:14
合計ジャッジ時間 6,436 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,408 KB
testcase_01 AC 127 ms
41,336 KB
testcase_02 AC 118 ms
39,852 KB
testcase_03 AC 129 ms
41,424 KB
testcase_04 AC 129 ms
41,124 KB
testcase_05 AC 130 ms
41,000 KB
testcase_06 AC 125 ms
41,780 KB
testcase_07 AC 124 ms
41,108 KB
testcase_08 AC 122 ms
40,956 KB
testcase_09 AC 129 ms
41,124 KB
testcase_10 AC 132 ms
41,432 KB
testcase_11 AC 116 ms
40,200 KB
testcase_12 AC 138 ms
40,984 KB
testcase_13 AC 132 ms
41,248 KB
testcase_14 AC 131 ms
41,580 KB
testcase_15 AC 134 ms
41,580 KB
testcase_16 AC 124 ms
41,364 KB
testcase_17 AC 126 ms
41,348 KB
testcase_18 AC 125 ms
41,428 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No207 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub
		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){
				System.out.println(i);
			}else if(String.valueOf(i).indexOf("3") >= 0){
					System.out.println(i);					
			}
		}
		

	}

}
0