結果

問題 No.207 世界のなんとか
ユーザー shinwisteriashinwisteria
提出日時 2017-03-18 18:23:22
言語 Java
(openjdk 23)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 386 bytes
コンパイル時間 4,370 ms
コンパイル使用メモリ 78,656 KB
実行使用メモリ 42,004 KB
最終ジャッジ日時 2024-07-04 19:17:56
合計ジャッジ時間 6,125 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,316 KB
testcase_01 AC 120 ms
41,432 KB
testcase_02 AC 119 ms
41,116 KB
testcase_03 AC 123 ms
41,276 KB
testcase_04 AC 127 ms
41,648 KB
testcase_05 AC 123 ms
41,628 KB
testcase_06 AC 117 ms
41,240 KB
testcase_07 AC 121 ms
41,212 KB
testcase_08 AC 110 ms
42,004 KB
testcase_09 AC 123 ms
41,504 KB
testcase_10 AC 125 ms
41,536 KB
testcase_11 AC 131 ms
41,476 KB
testcase_12 AC 133 ms
41,360 KB
testcase_13 AC 132 ms
41,356 KB
testcase_14 AC 133 ms
41,840 KB
testcase_15 AC 127 ms
41,428 KB
testcase_16 AC 129 ms
41,464 KB
testcase_17 AC 126 ms
41,108 KB
testcase_18 AC 121 ms
41,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Three {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		int A = s.nextInt() , B = s.nextInt();
		s.close();
		for(int i = A;i <= B;i++){
			if(i % 3 == 0){
				System.out.println(i);
			}else{
				String str = String.valueOf(i);
				if(str.indexOf("3") != -1){
					System.out.println(i);
				}
			}
		}

	}

}
0