結果

問題 No.207 世界のなんとか
ユーザー hj5ln8kbDM8t2fFhj5ln8kbDM8t2fF
提出日時 2019-06-22 19:58:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 708 bytes
コンパイル時間 1,982 ms
コンパイル使用メモリ 74,396 KB
実行使用メモリ 41,652 KB
最終ジャッジ日時 2024-06-07 23:02:16
合計ジャッジ時間 5,157 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,528 KB
testcase_01 AC 123 ms
41,280 KB
testcase_02 AC 131 ms
41,228 KB
testcase_03 AC 126 ms
41,444 KB
testcase_04 AC 125 ms
41,504 KB
testcase_05 AC 130 ms
41,500 KB
testcase_06 AC 123 ms
41,276 KB
testcase_07 AC 128 ms
41,560 KB
testcase_08 AC 124 ms
41,272 KB
testcase_09 AC 138 ms
41,320 KB
testcase_10 AC 136 ms
41,516 KB
testcase_11 AC 126 ms
41,644 KB
testcase_12 AC 129 ms
41,432 KB
testcase_13 AC 129 ms
41,584 KB
testcase_14 AC 130 ms
41,580 KB
testcase_15 AC 109 ms
41,464 KB
testcase_16 AC 121 ms
41,652 KB
testcase_17 AC 123 ms
41,272 KB
testcase_18 AC 121 ms
41,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Nabeatu{
    public Nabeatu(int From,int End){
        for(int i=From;i<=End;i++){
            if (i%3==0){
                System.out.println(i);
            } else{
                String s_From = Integer.toString(i);
                if(s_From.contains("3")){
                    System.out.println(s_From);
                }  
            }
        }
    }
    
    public Nabeatu(){
        System.out.println("3でバカになる");
    }
}

public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int From = sc.nextInt();
        int End = sc.nextInt();
        
        Nabeatu bk = new Nabeatu(From,End);
    }
}
0