結果

問題 No.207 世界のなんとか
ユーザー MattyaaMattyanMattyaaMattyan
提出日時 2018-08-16 00:28:24
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 485 bytes
コンパイル時間 3,652 ms
コンパイル使用メモリ 74,876 KB
実行使用メモリ 54,536 KB
最終ジャッジ日時 2024-09-24 09:40:32
合計ジャッジ時間 6,097 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 147 ms
54,056 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 132 ms
54,148 KB
testcase_07 AC 131 ms
54,072 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 137 ms
53,844 KB
testcase_17 AC 136 ms
54,100 KB
testcase_18 AC 144 ms
54,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        // Your code here!
        Scanner sc=new Scanner(System.in);
        int num1=sc.nextInt();
        int num2=sc.nextInt();
        for(int i=num1;i<=num2;i++)
        {
            if(i%3==0)
            {
                System.out.println(i);
            }
            else if(i%10==3)
            {
                System.out.println(i);
            }
        }
    }
}
0