結果

問題 No.207 世界のなんとか
ユーザー howakurohowakuro
提出日時 2015-09-25 00:43:08
言語 Java
(openjdk 23)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 363 bytes
コンパイル時間 3,578 ms
コンパイル使用メモリ 74,844 KB
実行使用メモリ 41,652 KB
最終ジャッジ日時 2024-10-09 10:34:17
合計ジャッジ時間 6,747 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,592 KB
testcase_01 AC 140 ms
41,260 KB
testcase_02 AC 145 ms
41,400 KB
testcase_03 AC 140 ms
41,508 KB
testcase_04 AC 138 ms
41,580 KB
testcase_05 AC 142 ms
41,432 KB
testcase_06 AC 124 ms
39,780 KB
testcase_07 AC 138 ms
41,124 KB
testcase_08 AC 137 ms
41,172 KB
testcase_09 AC 141 ms
41,532 KB
testcase_10 AC 140 ms
41,112 KB
testcase_11 AC 139 ms
41,408 KB
testcase_12 AC 138 ms
41,104 KB
testcase_13 AC 142 ms
41,348 KB
testcase_14 AC 137 ms
41,148 KB
testcase_15 AC 140 ms
41,516 KB
testcase_16 AC 136 ms
41,652 KB
testcase_17 AC 137 ms
41,388 KB
testcase_18 AC 136 ms
41,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Puroguram{
	static Scanner scan= new Scanner(System.in);
	
	public static void main(String[] Args){
		int A = scan.nextInt();
		int B = scan.nextInt();
		
		for(;A<=B;A++){
			String a = String.valueOf(A);
			if(A%3==0){
				System.out.println(A);
			}else if(a.contains("3")){
				System.out.println(A);
			}	
			
		}
	}
}
0