結果

問題 No.207 世界のなんとか
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-09-12 01:07:36
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 516 bytes
コンパイル時間 5,805 ms
コンパイル使用メモリ 75,080 KB
実行使用メモリ 54,356 KB
最終ジャッジ日時 2024-11-07 16:00:40
合計ジャッジ時間 7,823 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,904 KB
testcase_01 AC 132 ms
54,112 KB
testcase_02 AC 137 ms
54,076 KB
testcase_03 AC 136 ms
54,172 KB
testcase_04 AC 135 ms
54,148 KB
testcase_05 AC 137 ms
54,008 KB
testcase_06 AC 130 ms
53,856 KB
testcase_07 AC 134 ms
53,960 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 140 ms
54,220 KB
testcase_12 AC 142 ms
54,064 KB
testcase_13 WA -
testcase_14 AC 141 ms
54,120 KB
testcase_15 AC 138 ms
54,160 KB
testcase_16 AC 132 ms
53,968 KB
testcase_17 AC 132 ms
54,304 KB
testcase_18 AC 136 ms
53,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No_207 {
	
	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++){  //aからbまで回す
			if (i%3==0) { System.out.println(i); }
			
			else if(i%3!=0){
				
        	String k = String.valueOf(i);  //数字iを文字列kに変換
        	if (k.indexOf("3")>0){ System.out.println(i); } //文字列kに3が入っていればiを出力

			}
			
        }

	}
	
}
0