結果

問題 No.207 世界のなんとか
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-23 01:32:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 546 bytes
コンパイル時間 3,559 ms
コンパイル使用メモリ 74,680 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-10-11 19:45:30
合計ジャッジ時間 6,947 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 120 ms
41,384 KB
testcase_04 AC 132 ms
40,732 KB
testcase_05 WA -
testcase_06 AC 129 ms
41,092 KB
testcase_07 AC 129 ms
41,080 KB
testcase_08 AC 131 ms
41,068 KB
testcase_09 AC 135 ms
41,052 KB
testcase_10 WA -
testcase_11 AC 121 ms
40,036 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 133 ms
41,012 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 129 ms
41,204 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