結果

問題 No.207 世界のなんとか
ユーザー ダンネックダンネック
提出日時 2020-05-24 12:03:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 409 bytes
コンパイル時間 5,167 ms
コンパイル使用メモリ 75,576 KB
実行使用メモリ 54,336 KB
最終ジャッジ日時 2024-10-11 03:19:38
合計ジャッジ時間 6,935 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,048 KB
testcase_01 AC 134 ms
53,804 KB
testcase_02 AC 136 ms
53,964 KB
testcase_03 AC 136 ms
54,020 KB
testcase_04 AC 135 ms
54,048 KB
testcase_05 AC 134 ms
54,208 KB
testcase_06 AC 128 ms
54,092 KB
testcase_07 AC 128 ms
54,240 KB
testcase_08 AC 116 ms
53,084 KB
testcase_09 AC 133 ms
53,840 KB
testcase_10 AC 120 ms
52,744 KB
testcase_11 AC 132 ms
53,960 KB
testcase_12 AC 133 ms
53,868 KB
testcase_13 AC 134 ms
54,004 KB
testcase_14 AC 135 ms
54,072 KB
testcase_15 AC 134 ms
54,116 KB
testcase_16 AC 121 ms
52,740 KB
testcase_17 AC 136 ms
53,976 KB
testcase_18 AC 136 ms
54,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;
public class length{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
	    int a = sc.nextInt();
	    int b = sc.nextInt();
	    int i;
	    for(i=a; i<=b;i++){
	        String s = Integer.toString(i);
	        if(i % 3 ==0||s.contains("3")){
	            System.out.println(i);
	        }
	    }
		sc.close();
    }
}
0