結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,468 KB
testcase_01 AC 138 ms
41,116 KB
testcase_02 AC 142 ms
41,228 KB
testcase_03 AC 142 ms
41,500 KB
testcase_04 AC 141 ms
41,272 KB
testcase_05 AC 145 ms
41,148 KB
testcase_06 AC 140 ms
41,448 KB
testcase_07 AC 142 ms
41,212 KB
testcase_08 AC 142 ms
41,468 KB
testcase_09 AC 143 ms
41,312 KB
testcase_10 AC 147 ms
41,820 KB
testcase_11 AC 151 ms
41,336 KB
testcase_12 AC 143 ms
41,336 KB
testcase_13 AC 149 ms
41,400 KB
testcase_14 AC 152 ms
41,512 KB
testcase_15 AC 142 ms
41,260 KB
testcase_16 AC 137 ms
41,072 KB
testcase_17 AC 139 ms
41,132 KB
testcase_18 AC 137 ms
41,344 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