結果

問題 No.207 世界のなんとか
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-23 01:33:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 547 bytes
コンパイル時間 3,370 ms
コンパイル使用メモリ 74,300 KB
実行使用メモリ 41,536 KB
最終ジャッジ日時 2024-10-11 19:47:12
合計ジャッジ時間 6,651 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,144 KB
testcase_01 AC 127 ms
41,104 KB
testcase_02 AC 135 ms
41,448 KB
testcase_03 AC 121 ms
39,912 KB
testcase_04 AC 130 ms
41,276 KB
testcase_05 AC 134 ms
41,048 KB
testcase_06 AC 128 ms
41,028 KB
testcase_07 AC 129 ms
41,012 KB
testcase_08 AC 128 ms
41,168 KB
testcase_09 AC 133 ms
41,208 KB
testcase_10 AC 134 ms
41,136 KB
testcase_11 AC 135 ms
41,152 KB
testcase_12 AC 138 ms
41,004 KB
testcase_13 AC 136 ms
41,536 KB
testcase_14 AC 137 ms
41,260 KB
testcase_15 AC 122 ms
41,392 KB
testcase_16 AC 130 ms
41,248 KB
testcase_17 AC 115 ms
39,772 KB
testcase_18 AC 126 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Exercises4{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int firstNum = sc.nextInt();
    int secondNum = sc.nextInt();

    for(int n = firstNum; n <= secondNum; n++){
      if (n % 3 == 0 || isThreeExist(n)){
        System.out.println(n);
      }
    }
  }
  private static boolean isThreeExist(int a){
    char[] array = String.valueOf(a).toCharArray();
    for(char ca: array){
      if(ca == '3'){
        return true;
      }
    }
    return false;
  }
}
0