結果

問題 No.207 世界のなんとか
ユーザー rf141rf141
提出日時 2015-06-28 16:28:50
言語 Java
(openjdk 23)
結果
AC  
実行時間 137 ms / 5,000 ms
コード長 354 bytes
コンパイル時間 3,424 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 41,620 KB
最終ジャッジ日時 2024-10-09 10:26:08
合計ジャッジ時間 6,633 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,320 KB
testcase_01 AC 131 ms
41,116 KB
testcase_02 AC 132 ms
40,992 KB
testcase_03 AC 130 ms
41,276 KB
testcase_04 AC 126 ms
41,152 KB
testcase_05 AC 119 ms
40,020 KB
testcase_06 AC 127 ms
41,112 KB
testcase_07 AC 126 ms
40,980 KB
testcase_08 AC 128 ms
41,452 KB
testcase_09 AC 131 ms
41,456 KB
testcase_10 AC 122 ms
41,388 KB
testcase_11 AC 120 ms
41,380 KB
testcase_12 AC 122 ms
40,284 KB
testcase_13 AC 134 ms
41,620 KB
testcase_14 AC 137 ms
41,000 KB
testcase_15 AC 134 ms
41,120 KB
testcase_16 AC 127 ms
41,088 KB
testcase_17 AC 130 ms
41,428 KB
testcase_18 AC 130 ms
41,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class World{
	public static void main(String[] args){
		int n1,n2;
		Scanner scan = new Scanner(System.in);
		n1=scan.nextInt();
		n2=scan.nextInt();

		for(int i = n1;i<=n2;i++){
			if(i==1)continue;
			if(i%3==0){
				System.out.println(i);
			}else if(String.valueOf(i).indexOf("3")!= -1){System.out.println(i);
		}
		}
	}
}
0