結果

問題 No.207 世界のなんとか
ユーザー show258show258
提出日時 2017-03-29 20:02:59
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 578 bytes
コンパイル時間 3,078 ms
コンパイル使用メモリ 74,928 KB
実行使用メモリ 54,280 KB
最終ジャッジ日時 2024-07-06 15:06:05
合計ジャッジ時間 6,236 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,264 KB
testcase_01 AC 132 ms
54,160 KB
testcase_02 AC 120 ms
53,024 KB
testcase_03 AC 124 ms
54,008 KB
testcase_04 AC 128 ms
54,136 KB
testcase_05 AC 127 ms
54,124 KB
testcase_06 AC 123 ms
54,156 KB
testcase_07 AC 121 ms
53,936 KB
testcase_08 AC 128 ms
54,052 KB
testcase_09 AC 126 ms
53,768 KB
testcase_10 AC 130 ms
54,052 KB
testcase_11 AC 131 ms
54,092 KB
testcase_12 AC 130 ms
54,016 KB
testcase_13 AC 130 ms
54,128 KB
testcase_14 AC 124 ms
54,076 KB
testcase_15 AC 126 ms
54,120 KB
testcase_16 AC 119 ms
53,948 KB
testcase_17 AC 110 ms
52,844 KB
testcase_18 AC 123 ms
54,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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

    // 標準入力から読み込む際に、Scannerオブジェクトを使う。
    Scanner sc = new Scanner(System.in);

    // int fromを読み込む
    int from = sc.nextInt();

    // int toを読み込む
    int to = sc.nextInt();


    for (int i = from; i <= to; i++) {
      if (String.valueOf(i).contains("3")) { // 3を含む数字か?
        System.out.println(i);
      }else if(i % 3 == 0){  // 3の倍数か?
        System.out.println(i);
      }
    }
  }
}
0