結果

問題 No.207 世界のなんとか
ユーザー youthfuldays072youthfuldays072
提出日時 2018-05-20 11:47:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 620 bytes
コンパイル時間 2,344 ms
コンパイル使用メモリ 73,772 KB
実行使用メモリ 41,808 KB
最終ジャッジ日時 2024-06-28 14:36:03
合計ジャッジ時間 5,328 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
41,388 KB
testcase_01 AC 133 ms
41,524 KB
testcase_02 AC 137 ms
41,132 KB
testcase_03 AC 133 ms
41,236 KB
testcase_04 AC 133 ms
40,980 KB
testcase_05 AC 134 ms
41,344 KB
testcase_06 AC 128 ms
41,280 KB
testcase_07 AC 128 ms
41,496 KB
testcase_08 AC 131 ms
41,196 KB
testcase_09 AC 137 ms
41,808 KB
testcase_10 AC 137 ms
41,524 KB
testcase_11 AC 121 ms
41,316 KB
testcase_12 AC 138 ms
41,244 KB
testcase_13 AC 137 ms
41,248 KB
testcase_14 AC 132 ms
41,224 KB
testcase_15 AC 136 ms
41,248 KB
testcase_16 AC 132 ms
40,908 KB
testcase_17 AC 130 ms
40,172 KB
testcase_18 AC 130 ms
41,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main {


    public static void main(String[] args) {

    	Scanner sc=new Scanner(System.in);

    	int start=sc.nextInt();
    	int end=sc.nextInt();

    	for(int i=start;i<=end;i++) {

    		if(isAho(i)) {
    			System.out.println(i);
    		}

    	}

    	sc.close();


    }

    public static boolean isAho(int n) {


    	if(n%3==0) {
    		return true;
    	}

    	return containThree(n);

    }

    public static boolean containThree(int n) {

    	while(n>0) {

    		if(n%10==3) {
    			return true;
    		}

    		n/=10;

    	}

    	return false;

    }




}
0