結果

問題 No.207 世界のなんとか
ユーザー ちよちゃんちよちゃん
提出日時 2016-05-20 02:03:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 150 ms / 5,000 ms
コード長 512 bytes
コンパイル時間 3,424 ms
コンパイル使用メモリ 75,704 KB
実行使用メモリ 54,532 KB
最終ジャッジ日時 2024-10-09 10:56:05
合計ジャッジ時間 7,015 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
54,000 KB
testcase_01 AC 140 ms
54,204 KB
testcase_02 AC 144 ms
54,184 KB
testcase_03 AC 141 ms
54,532 KB
testcase_04 AC 138 ms
53,744 KB
testcase_05 AC 142 ms
54,256 KB
testcase_06 AC 137 ms
54,012 KB
testcase_07 AC 139 ms
54,228 KB
testcase_08 AC 139 ms
53,872 KB
testcase_09 AC 141 ms
53,880 KB
testcase_10 AC 141 ms
54,108 KB
testcase_11 AC 143 ms
54,212 KB
testcase_12 AC 149 ms
54,204 KB
testcase_13 AC 147 ms
53,988 KB
testcase_14 AC 150 ms
54,104 KB
testcase_15 AC 147 ms
53,832 KB
testcase_16 AC 139 ms
54,072 KB
testcase_17 AC 140 ms
54,056 KB
testcase_18 AC 138 ms
54,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class Yuki3 {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		long a = scan.nextLong();
		long b = scan.nextLong();
		
		scan.close();
		for(long i= a; i <= b; i++) {
			
			if(i % 3 == 0 || digit(i) == true){
				System.out.println(i);
			}			
		}
	}
	
	static private boolean digit(long num) {
		
		while(num>0){
			long k1 = num %10;
			if (k1 == 3){
				return true;
			}
			num = num/10;
		}
		
		return false;
	}
}
0