結果

問題 No.207 世界のなんとか
ユーザー AoiroFukurouAoiroFukurou
提出日時 2015-09-19 14:56:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 391 bytes
コンパイル時間 3,300 ms
コンパイル使用メモリ 73,928 KB
実行使用メモリ 41,428 KB
最終ジャッジ日時 2024-10-09 10:33:06
合計ジャッジ時間 6,607 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,152 KB
testcase_01 AC 130 ms
41,264 KB
testcase_02 AC 135 ms
41,108 KB
testcase_03 AC 133 ms
41,388 KB
testcase_04 AC 131 ms
41,324 KB
testcase_05 AC 121 ms
41,360 KB
testcase_06 AC 131 ms
41,364 KB
testcase_07 AC 129 ms
41,428 KB
testcase_08 AC 116 ms
39,932 KB
testcase_09 AC 134 ms
41,264 KB
testcase_10 AC 133 ms
41,260 KB
testcase_11 AC 133 ms
41,132 KB
testcase_12 AC 138 ms
41,124 KB
testcase_13 AC 135 ms
41,408 KB
testcase_14 AC 136 ms
41,380 KB
testcase_15 AC 121 ms
40,876 KB
testcase_16 AC 125 ms
41,052 KB
testcase_17 AC 127 ms
41,124 KB
testcase_18 AC 131 ms
41,004 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++){
		if(A%3==0){
			System.out.println(A);
			continue;
		}
		long tmp = A;
		while(tmp!=0){
			if(tmp%10==3){
				System.out.println(A);
				break;
			}
			tmp/=10;
		}
	}
}
}
0