結果

問題 No.207 世界のなんとか
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-01-02 12:06:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 605 bytes
コンパイル時間 3,953 ms
コンパイル使用メモリ 79,316 KB
実行使用メモリ 54,140 KB
最終ジャッジ日時 2024-10-12 01:53:55
合計ジャッジ時間 7,662 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,808 KB
testcase_01 AC 114 ms
52,592 KB
testcase_02 AC 129 ms
53,792 KB
testcase_03 AC 126 ms
54,088 KB
testcase_04 AC 126 ms
53,836 KB
testcase_05 AC 130 ms
54,140 KB
testcase_06 AC 125 ms
53,776 KB
testcase_07 AC 130 ms
53,868 KB
testcase_08 AC 130 ms
53,788 KB
testcase_09 AC 132 ms
54,000 KB
testcase_10 AC 130 ms
54,080 KB
testcase_11 AC 129 ms
53,736 KB
testcase_12 AC 132 ms
53,936 KB
testcase_13 AC 134 ms
53,820 KB
testcase_14 AC 132 ms
53,920 KB
testcase_15 AC 134 ms
53,988 KB
testcase_16 AC 116 ms
52,560 KB
testcase_17 AC 123 ms
53,848 KB
testcase_18 AC 124 ms
53,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.stream.IntStream;

// https://yukicoder.me/problems/no/07
public class WorldWhat207 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scan
    Scanner sc = new Scanner(System.in);

    // String 1つ分を読み込む
    int from = Integer.parseInt(sc.next());
    int to = Integer.parseInt(sc.next());
    IntStream.range(from, to + 1).filter(n -> ((n % 3 == 0) || contains3(n))).forEach(n -> System.out.println(n));
  }

  private static boolean contains3(int n) {
    return Integer.toString(n).contains("3");
  }
}
0