結果

問題 No.207 世界のなんとか
ユーザー h_tyokinuhatah_tyokinuhata
提出日時 2015-12-23 01:49:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 540 bytes
コンパイル時間 2,385 ms
コンパイル使用メモリ 75,952 KB
実行使用メモリ 41,856 KB
最終ジャッジ日時 2024-10-09 10:40:11
合計ジャッジ時間 5,905 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
41,320 KB
testcase_01 AC 137 ms
41,444 KB
testcase_02 AC 141 ms
41,288 KB
testcase_03 AC 140 ms
41,492 KB
testcase_04 AC 135 ms
41,728 KB
testcase_05 AC 139 ms
41,572 KB
testcase_06 AC 137 ms
41,684 KB
testcase_07 AC 136 ms
41,656 KB
testcase_08 AC 137 ms
41,400 KB
testcase_09 AC 139 ms
41,784 KB
testcase_10 AC 140 ms
41,652 KB
testcase_11 AC 140 ms
41,744 KB
testcase_12 AC 139 ms
41,856 KB
testcase_13 AC 141 ms
41,440 KB
testcase_14 AC 140 ms
41,616 KB
testcase_15 AC 143 ms
41,556 KB
testcase_16 AC 136 ms
41,292 KB
testcase_17 AC 135 ms
41,648 KB
testcase_18 AC 137 ms
41,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 
class Main {
    public static void main(String[] args) {
    	
    	Scanner sc = new Scanner(System.in);
    	ArrayList<Integer> thList = new ArrayList<>();

    	int A = sc.nextInt();
    	int B = sc.nextInt();
    	int cnt = 0;
    	for(int i = A; i <= B; i++) {
    		if(i % 3 == 0) {
    			thList.add(i);
    			cnt++;
    		} else if(String.valueOf(i).contains("3")) {
    			thList.add(i);
    			cnt++;
    		}
    	}
    	for(int i = 0; i < cnt; i++) {
    		System.out.println(thList.get(i));
    	}
    }
}
0