結果

問題 No.207 世界のなんとか
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-22 09:32:47
言語 Java
(openjdk 23)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 432 bytes
コンパイル時間 2,036 ms
コンパイル使用メモリ 74,992 KB
実行使用メモリ 51,900 KB
最終ジャッジ日時 2024-10-02 10:02:17
合計ジャッジ時間 5,362 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,428 KB
testcase_01 AC 122 ms
41,060 KB
testcase_02 AC 136 ms
41,252 KB
testcase_03 AC 126 ms
51,900 KB
testcase_04 AC 125 ms
41,592 KB
testcase_05 AC 137 ms
41,524 KB
testcase_06 AC 125 ms
41,360 KB
testcase_07 AC 124 ms
41,112 KB
testcase_08 AC 125 ms
41,672 KB
testcase_09 AC 139 ms
41,812 KB
testcase_10 AC 130 ms
41,208 KB
testcase_11 AC 118 ms
40,084 KB
testcase_12 AC 137 ms
41,244 KB
testcase_13 AC 137 ms
41,360 KB
testcase_14 AC 135 ms
41,364 KB
testcase_15 AC 136 ms
41,528 KB
testcase_16 AC 112 ms
39,828 KB
testcase_17 AC 125 ms
41,516 KB
testcase_18 AC 123 ms
41,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int A = sc.nextInt();
    int B = sc.nextInt();
    for(int i = A; i <= B; i++) {
      String s = String.valueOf(i);
      int count = 0;
      for(int j = 0; j < s.length(); j++) {
        if(s.charAt(j) == '3') count++;
      }
      if((i % 3 == 0) || (count > 0)) System.out.println(i);
    }
  }
}
0