結果

問題 No.207 世界のなんとか
ユーザー FVRChanFVRChan
提出日時 2017-10-02 21:24:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 407 bytes
コンパイル時間 2,355 ms
コンパイル使用メモリ 74,200 KB
実行使用メモリ 44,632 KB
最終ジャッジ日時 2024-11-15 22:42:09
合計ジャッジ時間 5,663 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,436 KB
testcase_01 AC 137 ms
40,744 KB
testcase_02 AC 140 ms
41,316 KB
testcase_03 AC 140 ms
41,464 KB
testcase_04 AC 137 ms
40,948 KB
testcase_05 AC 142 ms
40,948 KB
testcase_06 AC 136 ms
41,372 KB
testcase_07 AC 134 ms
41,164 KB
testcase_08 AC 135 ms
41,108 KB
testcase_09 AC 141 ms
41,004 KB
testcase_10 AC 140 ms
44,632 KB
testcase_11 AC 142 ms
41,444 KB
testcase_12 AC 140 ms
41,168 KB
testcase_13 AC 139 ms
41,524 KB
testcase_14 AC 140 ms
41,136 KB
testcase_15 AC 141 ms
41,088 KB
testcase_16 AC 139 ms
41,004 KB
testcase_17 AC 142 ms
41,252 KB
testcase_18 AC 140 ms
41,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
	private static Scanner sc=new Scanner(System.in);
	public static void main(String args[])throws Exception{
		int a=sc.nextInt(),b=sc.nextInt();
		for(int i=a;i<=b;i++){
			if(i%3==0 || in3(i)){
				System.out.println(i);
			}
		}
	}
	private static boolean in3(int i){
		String s=String.valueOf(i);
		if(s.indexOf("3")==-1)return false;
		else return true;
	}
}
0