結果

問題 No.207 世界のなんとか
ユーザー Ryota EnokidoRyota Enokido
提出日時 2018-12-09 21:36:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 123 ms / 5,000 ms
コード長 547 bytes
コンパイル時間 2,014 ms
コンパイル使用メモリ 74,144 KB
実行使用メモリ 41,364 KB
最終ジャッジ日時 2024-09-16 15:36:35
合計ジャッジ時間 4,712 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
39,896 KB
testcase_01 AC 115 ms
40,848 KB
testcase_02 AC 119 ms
41,152 KB
testcase_03 AC 107 ms
39,736 KB
testcase_04 AC 100 ms
39,960 KB
testcase_05 AC 106 ms
40,180 KB
testcase_06 AC 112 ms
41,104 KB
testcase_07 AC 106 ms
40,840 KB
testcase_08 AC 112 ms
41,364 KB
testcase_09 AC 107 ms
39,856 KB
testcase_10 AC 116 ms
40,752 KB
testcase_11 AC 121 ms
40,940 KB
testcase_12 AC 123 ms
41,172 KB
testcase_13 AC 120 ms
41,200 KB
testcase_14 AC 107 ms
40,068 KB
testcase_15 AC 113 ms
40,044 KB
testcase_16 AC 119 ms
40,896 KB
testcase_17 AC 117 ms
41,156 KB
testcase_18 AC 103 ms
39,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
 
 public class Main {
     public static void main(String[] args) {
         Scanner sc = new Scanner(System.in);
         
         long A = sc.nextLong();
         long B = sc.nextLong();
         
         
         while(A<=B){
             if(A%3==0){
                 System.out.println(A);
             }else{
                 String s = String.valueOf(A);
                 if(s.contains("3")){
                     System.out.println(A);
                 }
             }
             A++;
         }
 
     }
 }
0