結果

問題 No.207 世界のなんとか
ユーザー はまやんはまやんはまやんはまやん
提出日時 2016-05-14 13:56:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 613 bytes
コンパイル時間 2,056 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 54,368 KB
最終ジャッジ日時 2024-10-09 10:55:20
合計ジャッジ時間 5,339 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
53,896 KB
testcase_01 AC 127 ms
54,364 KB
testcase_02 AC 135 ms
54,312 KB
testcase_03 AC 133 ms
53,684 KB
testcase_04 AC 128 ms
53,556 KB
testcase_05 AC 118 ms
53,040 KB
testcase_06 AC 130 ms
54,092 KB
testcase_07 AC 130 ms
53,828 KB
testcase_08 AC 130 ms
53,816 KB
testcase_09 AC 132 ms
54,368 KB
testcase_10 AC 132 ms
53,812 KB
testcase_11 AC 132 ms
54,056 KB
testcase_12 AC 131 ms
53,704 KB
testcase_13 AC 134 ms
53,968 KB
testcase_14 AC 134 ms
53,936 KB
testcase_15 AC 133 ms
54,076 KB
testcase_16 AC 129 ms
53,856 KB
testcase_17 AC 129 ms
54,220 KB
testcase_18 AC 128 ms
53,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		Scanner sc = new Scanner(System.in);
		int A = sc.nextInt();
		int B = sc.nextInt();
		
		for(int i = A; i <= B;i++)
		{
			if(i % 3 == 0)
			{
				System.out.println(i);
				continue;
			}
			
			int j = i;
			boolean ok = false;
			while(0 < j)
			{
				if(j % 10 == 3) ok = true;
				j /= 10;
			}
			if(ok) System.out.println(i);
		}
	}
}
0