結果

問題 No.207 世界のなんとか
ユーザー k_kadorak_kadora
提出日時 2015-06-10 22:05:28
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 603 bytes
コンパイル時間 3,359 ms
コンパイル使用メモリ 76,408 KB
実行使用メモリ 46,336 KB
最終ジャッジ日時 2024-10-09 10:23:13
合計ジャッジ時間 6,593 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
46,336 KB
testcase_01 AC 129 ms
41,556 KB
testcase_02 AC 133 ms
41,428 KB
testcase_03 AC 117 ms
40,372 KB
testcase_04 AC 129 ms
41,132 KB
testcase_05 AC 133 ms
41,580 KB
testcase_06 AC 128 ms
41,104 KB
testcase_07 AC 127 ms
41,356 KB
testcase_08 AC 127 ms
41,564 KB
testcase_09 AC 119 ms
40,288 KB
testcase_10 AC 135 ms
41,480 KB
testcase_11 AC 130 ms
41,204 KB
testcase_12 AC 134 ms
41,000 KB
testcase_13 AC 129 ms
41,084 KB
testcase_14 AC 132 ms
41,304 KB
testcase_15 AC 133 ms
41,592 KB
testcase_16 AC 125 ms
41,524 KB
testcase_17 AC 124 ms
41,328 KB
testcase_18 AC 127 ms
41,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
public class World{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		Long a,b,n,temp;
		ArrayList number = new ArrayList();
		a = sc.nextLong();
		b = sc.nextLong();
		n = b-a+1;
		for(int i =0;i<n;i++){
			temp = a+i;
			if(temp %3 == 0){
				number.add(temp);
			}else{
				while( temp > 0){
					if(temp % 10 == 3){
						number.add(a+i);
						break;
					}
					temp = temp / 10;
				}
			}
		}
		if(number.size() != 0){
			for(int i = 0;i<number.size();i++){
				System.out.println(number.get(i));
			}
		}
	}
}
0