結果

問題 No.207 世界のなんとか
ユーザー ikawaiikawai
提出日時 2023-09-04 11:22:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 5,000 ms
コード長 365 bytes
コンパイル時間 2,450 ms
コンパイル使用メモリ 75,156 KB
実行使用メモリ 54,180 KB
最終ジャッジ日時 2024-06-22 10:11:05
合計ジャッジ時間 5,997 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
52,724 KB
testcase_01 AC 105 ms
53,088 KB
testcase_02 AC 118 ms
53,864 KB
testcase_03 AC 111 ms
53,768 KB
testcase_04 AC 111 ms
53,940 KB
testcase_05 AC 113 ms
54,008 KB
testcase_06 AC 115 ms
53,728 KB
testcase_07 AC 100 ms
52,852 KB
testcase_08 AC 112 ms
54,024 KB
testcase_09 AC 121 ms
53,852 KB
testcase_10 AC 119 ms
54,180 KB
testcase_11 AC 106 ms
53,088 KB
testcase_12 AC 124 ms
53,920 KB
testcase_13 AC 106 ms
52,820 KB
testcase_14 AC 115 ms
53,964 KB
testcase_15 AC 123 ms
53,964 KB
testcase_16 AC 111 ms
53,824 KB
testcase_17 AC 111 ms
53,872 KB
testcase_18 AC 114 ms
54,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Wandbox
{
    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 str = String.valueOf(i);
    		if (i % 3 == 0 || str.contains("3")) {
    			System.out.println(i);
    		}
    	} 
    }
}
0