結果

問題 No.207 世界のなんとか
ユーザー core123core123
提出日時 2019-04-16 15:27:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 5,000 ms
コード長 444 bytes
コンパイル時間 1,955 ms
コンパイル使用メモリ 74,768 KB
実行使用メモリ 55,900 KB
最終ジャッジ日時 2024-09-22 08:16:22
合計ジャッジ時間 5,203 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
55,900 KB
testcase_01 AC 129 ms
54,132 KB
testcase_02 AC 135 ms
53,932 KB
testcase_03 AC 118 ms
54,128 KB
testcase_04 AC 130 ms
54,040 KB
testcase_05 AC 133 ms
54,040 KB
testcase_06 AC 129 ms
54,216 KB
testcase_07 AC 130 ms
53,968 KB
testcase_08 AC 116 ms
53,060 KB
testcase_09 AC 135 ms
54,224 KB
testcase_10 AC 136 ms
54,000 KB
testcase_11 AC 133 ms
54,116 KB
testcase_12 AC 136 ms
54,172 KB
testcase_13 AC 135 ms
54,188 KB
testcase_14 AC 134 ms
54,316 KB
testcase_15 AC 135 ms
54,332 KB
testcase_16 AC 122 ms
53,116 KB
testcase_17 AC 130 ms
54,080 KB
testcase_18 AC 130 ms
54,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;
public class Main{
	public static void main(String... args){
		Scanner sc=new Scanner(System.in);
		long a=sc.nextLong();
		long b=sc.nextLong();
		for(long i=a;i<=b;i++){
			if(i%3==0||isAttached3(i)){
				System.out.println(i);
			}
		}
	}
	public static boolean isAttached3(long x){
		String s=Long.toString(x);
		for(char c:s.toCharArray()){
			if(c=='3')return true;
		}
		return false;
	}
}
0