結果

問題 No.207 世界のなんとか
ユーザー kaoetayakaoetaya
提出日時 2016-12-07 21:50:20
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 498 bytes
コンパイル時間 3,574 ms
コンパイル使用メモリ 74,512 KB
実行使用メモリ 56,308 KB
最終ジャッジ日時 2024-11-28 03:29:36
合計ジャッジ時間 6,426 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 113 ms
40,132 KB
testcase_02 WA -
testcase_03 AC 130 ms
41,320 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 126 ms
41,432 KB
testcase_07 AC 127 ms
41,564 KB
testcase_08 AC 124 ms
41,456 KB
testcase_09 AC 130 ms
41,820 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 115 ms
40,284 KB
testcase_17 AC 127 ms
41,464 KB
testcase_18 AC 125 ms
41,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Test{
    public static void main(String[] args){
        Scanner s = new Scanner(System.in);
        int a = s.nextInt(),b = s.nextInt();

        for(int i=a;i<=b;i++){
        	if(i%3 == 0){
        		System.out.println(i);
        	}
        	else{
        		String str = String.valueOf(i);

        		for(int j=0;j<str.length();j++){
        			if(str.charAt(j) == '3'){
        				System.out.println(i);
        			}
        		}
        	}
        }
    }
}
0