結果

問題 No.207 世界のなんとか
ユーザー reo3313reo3313
提出日時 2015-09-24 13:05:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 157 ms / 5,000 ms
コード長 985 bytes
コンパイル時間 3,587 ms
コンパイル使用メモリ 76,640 KB
実行使用メモリ 54,492 KB
最終ジャッジ日時 2024-10-09 10:34:10
合計ジャッジ時間 7,402 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
54,288 KB
testcase_01 AC 148 ms
54,492 KB
testcase_02 AC 156 ms
54,328 KB
testcase_03 AC 154 ms
54,008 KB
testcase_04 AC 152 ms
54,272 KB
testcase_05 AC 153 ms
54,364 KB
testcase_06 AC 150 ms
54,236 KB
testcase_07 AC 147 ms
54,280 KB
testcase_08 AC 146 ms
54,296 KB
testcase_09 AC 152 ms
54,264 KB
testcase_10 AC 154 ms
54,124 KB
testcase_11 AC 153 ms
54,068 KB
testcase_12 AC 157 ms
54,260 KB
testcase_13 AC 155 ms
54,260 KB
testcase_14 AC 153 ms
54,260 KB
testcase_15 AC 154 ms
54,444 KB
testcase_16 AC 148 ms
54,272 KB
testcase_17 AC 149 ms
54,268 KB
testcase_18 AC 117 ms
52,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package test1;
import java.util.Scanner;
import java.util.regex.Pattern;
import java.util.regex.Matcher;

public class test1_class {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);

        int a = sc.nextInt();
        int b = sc.nextInt();
        int i;
        int amari;
        
        for(i=a; i<=b; i++){

        	int flag = 0;
        	
        	//3の倍数
        	amari = i%3;
            if(amari==0){
            	flag = 1;
            }
        	
            //3が付く
            String str = String.valueOf(i);            
            //判定するパターンを生成
            Pattern p = Pattern.compile("3");
            Matcher m = p.matcher(str);
            if(m.find()){
            	flag = 1;
            }
            
            if(flag == 1){
            	System.out.print(i + "\n");
            }
        }
    }
}
0