結果

問題 No.207 世界のなんとか
ユーザー AoiroFukurouAoiroFukurou
提出日時 2015-09-19 14:30:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 326 bytes
コンパイル時間 3,171 ms
コンパイル使用メモリ 75,576 KB
実行使用メモリ 41,556 KB
最終ジャッジ日時 2024-10-09 10:32:01
合計ジャッジ時間 6,330 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
40,108 KB
testcase_01 AC 126 ms
41,424 KB
testcase_02 AC 132 ms
40,996 KB
testcase_03 AC 128 ms
41,536 KB
testcase_04 AC 126 ms
41,000 KB
testcase_05 AC 129 ms
41,124 KB
testcase_06 AC 112 ms
40,208 KB
testcase_07 AC 113 ms
40,172 KB
testcase_08 AC 113 ms
40,172 KB
testcase_09 AC 132 ms
41,556 KB
testcase_10 AC 131 ms
41,444 KB
testcase_11 AC 118 ms
39,852 KB
testcase_12 AC 134 ms
41,324 KB
testcase_13 AC 121 ms
40,096 KB
testcase_14 AC 133 ms
41,224 KB
testcase_15 AC 133 ms
41,000 KB
testcase_16 AC 126 ms
41,360 KB
testcase_17 AC 123 ms
41,372 KB
testcase_18 AC 123 ms
41,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package b2015_09_19;

import java.util.Scanner;

public class No207 {
public static void main(String[] args) {
	Scanner sc = new Scanner(System.in);
	long A = sc.nextLong();
	long B= sc.nextLong();
	for(; A<=B; A++){
		String str = String.valueOf(A);
		if(A%3==0 || str.indexOf("3")!=-1){
			System.out.println(A);
		}
	}
}
}
0