結果

問題 No.207 世界のなんとか
ユーザー Mcpu3Mcpu3
提出日時 2018-06-21 22:58:45
言語 Java
(openjdk 23)
結果
AC  
実行時間 133 ms / 5,000 ms
コード長 385 bytes
コンパイル時間 2,001 ms
コンパイル使用メモリ 74,356 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-06-30 17:45:11
合計ジャッジ時間 5,318 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
41,188 KB
testcase_01 AC 122 ms
41,240 KB
testcase_02 AC 127 ms
41,328 KB
testcase_03 AC 131 ms
41,356 KB
testcase_04 AC 116 ms
40,152 KB
testcase_05 AC 132 ms
40,992 KB
testcase_06 AC 119 ms
41,160 KB
testcase_07 AC 123 ms
40,872 KB
testcase_08 AC 125 ms
41,288 KB
testcase_09 AC 129 ms
40,804 KB
testcase_10 AC 104 ms
39,320 KB
testcase_11 AC 126 ms
41,256 KB
testcase_12 AC 133 ms
40,868 KB
testcase_13 AC 116 ms
40,224 KB
testcase_14 AC 128 ms
40,948 KB
testcase_15 AC 132 ms
41,068 KB
testcase_16 AC 124 ms
41,000 KB
testcase_17 AC 128 ms
41,404 KB
testcase_18 AC 114 ms
41,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no207{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int a,b,i,t,s;
		a=stdIn.nextInt();
		b=stdIn.nextInt();
		for(i=a;i<=b;i++) {
			s=0;
			t=i;
			do {
				if(t%10==3) {
					s++;
					break;
				}
				t/=10;
			}while(t!=0);
			if(i%3==0) s++;
			if(s!=0) System.out.println(i);
		}
	}
}
0