結果

問題 No.207 世界のなんとか
ユーザー TakaTaka
提出日時 2016-04-10 15:18:26
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 542 bytes
コンパイル時間 2,115 ms
コンパイル使用メモリ 74,568 KB
実行使用メモリ 54,176 KB
最終ジャッジ日時 2024-10-09 10:50:53
合計ジャッジ時間 5,496 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
53,812 KB
testcase_01 AC 135 ms
53,896 KB
testcase_02 AC 139 ms
54,036 KB
testcase_03 AC 135 ms
53,900 KB
testcase_04 AC 134 ms
54,112 KB
testcase_05 AC 137 ms
53,996 KB
testcase_06 AC 133 ms
53,680 KB
testcase_07 AC 132 ms
53,868 KB
testcase_08 AC 135 ms
54,040 KB
testcase_09 AC 143 ms
53,928 KB
testcase_10 AC 138 ms
54,160 KB
testcase_11 AC 139 ms
53,864 KB
testcase_12 AC 138 ms
54,084 KB
testcase_13 AC 138 ms
54,168 KB
testcase_14 AC 138 ms
53,564 KB
testcase_15 AC 137 ms
53,988 KB
testcase_16 AC 132 ms
53,728 KB
testcase_17 AC 133 ms
53,960 KB
testcase_18 AC 130 ms
54,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
		
        Scanner sc = new Scanner(System.in);
		
       	int A = sc.nextInt();
        int B = sc.nextInt();
		int i, j=0, x=A, y=B;
		char num;
		
		for(i=x; i<=y; i++)
		{
				if(i%3==0){
					System.out.println(i);
				}else{
					String i_string=String.valueOf(i);
					
					for(j=0; j<i_string.length(); j++)
					{
						num=i_string.charAt(j);
						if(num=='3'){
							System.out.println(i);
							break;
						}
					}
				}
		}
    }
}
0