結果

問題 No.207 世界のなんとか
ユーザー papipenpapipen
提出日時 2017-03-24 01:28:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 330 bytes
コンパイル時間 1,745 ms
コンパイル使用メモリ 76,172 KB
実行使用メモリ 41,076 KB
最終ジャッジ日時 2024-07-05 18:56:56
合計ジャッジ時間 4,555 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
40,976 KB
testcase_01 AC 106 ms
41,068 KB
testcase_02 AC 112 ms
40,980 KB
testcase_03 AC 109 ms
41,000 KB
testcase_04 AC 100 ms
39,824 KB
testcase_05 AC 109 ms
41,076 KB
testcase_06 AC 109 ms
40,904 KB
testcase_07 AC 103 ms
40,692 KB
testcase_08 AC 105 ms
40,732 KB
testcase_09 AC 110 ms
40,856 KB
testcase_10 AC 110 ms
40,916 KB
testcase_11 AC 111 ms
40,928 KB
testcase_12 AC 111 ms
40,168 KB
testcase_13 AC 112 ms
39,924 KB
testcase_14 AC 108 ms
40,992 KB
testcase_15 AC 111 ms
41,040 KB
testcase_16 AC 105 ms
41,064 KB
testcase_17 AC 103 ms
40,864 KB
testcase_18 AC 106 ms
41,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Nabeatu{
  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 c = "" + i;
      if(i % 3 == 0 || c.indexOf("3") !=-1){
        System.out.println(i);
      }
    }
  }
}
0