結果

問題 No.207 世界のなんとか
ユーザー hj5ln8kbDM8t2fFhj5ln8kbDM8t2fF
提出日時 2019-06-21 12:15:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 567 bytes
コンパイル時間 1,828 ms
コンパイル使用メモリ 73,856 KB
実行使用メモリ 41,268 KB
最終ジャッジ日時 2024-06-06 20:03:02
合計ジャッジ時間 4,938 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
39,856 KB
testcase_01 AC 116 ms
40,764 KB
testcase_02 AC 122 ms
40,880 KB
testcase_03 AC 123 ms
41,132 KB
testcase_04 AC 120 ms
41,188 KB
testcase_05 AC 118 ms
40,624 KB
testcase_06 AC 116 ms
41,032 KB
testcase_07 AC 107 ms
39,748 KB
testcase_08 AC 110 ms
40,756 KB
testcase_09 AC 109 ms
41,160 KB
testcase_10 AC 125 ms
40,872 KB
testcase_11 AC 110 ms
40,784 KB
testcase_12 AC 121 ms
41,268 KB
testcase_13 AC 121 ms
41,180 KB
testcase_14 AC 123 ms
40,648 KB
testcase_15 AC 106 ms
41,112 KB
testcase_16 AC 120 ms
40,592 KB
testcase_17 AC 117 ms
40,716 KB
testcase_18 AC 106 ms
39,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int From = sc.nextInt();
        int End = sc.nextInt();
        
        for(int i=From;i<=End;i++){
            if (i%3==0){
                System.out.println(i);
            } else{
            //    String s = Integer.toString(i);
                String s_From = Integer.toString(i);
                if(s_From.contains("3")){
                    System.out.println(s_From);
                }  
            }
        }
    }
}
0