結果

問題 No.207 世界のなんとか
ユーザー youthfuldays072youthfuldays072
提出日時 2018-05-20 11:46:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 618 bytes
コンパイル時間 1,979 ms
コンパイル使用メモリ 74,020 KB
実行使用メモリ 41,968 KB
最終ジャッジ日時 2024-06-28 14:35:56
合計ジャッジ時間 5,332 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,396 KB
testcase_01 AC 129 ms
41,136 KB
testcase_02 AC 137 ms
41,676 KB
testcase_03 AC 138 ms
41,568 KB
testcase_04 AC 132 ms
41,232 KB
testcase_05 AC 134 ms
41,464 KB
testcase_06 AC 130 ms
41,336 KB
testcase_07 AC 130 ms
41,300 KB
testcase_08 AC 129 ms
41,680 KB
testcase_09 AC 132 ms
41,564 KB
testcase_10 AC 133 ms
41,968 KB
testcase_11 AC 129 ms
41,264 KB
testcase_12 AC 131 ms
41,420 KB
testcase_13 AC 138 ms
41,420 KB
testcase_14 AC 140 ms
41,472 KB
testcase_15 AC 137 ms
41,940 KB
testcase_16 AC 131 ms
41,488 KB
testcase_17 AC 132 ms
41,548 KB
testcase_18 AC 132 ms
41,580 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 containTree(n);

    }

    public static boolean containTree(int n) {

    	while(n>0) {

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

    		n/=10;

    	}

    	return false;

    }




}
0