結果

問題 No.192 合成数
ユーザー hirata0301hirata0301
提出日時 2023-02-21 11:48:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 479 bytes
コンパイル時間 1,970 ms
コンパイル使用メモリ 74,308 KB
実行使用メモリ 56,192 KB
最終ジャッジ日時 2024-07-21 23:55:40
合計ジャッジ時間 7,890 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 124 ms
41,512 KB
testcase_06 AC 123 ms
41,144 KB
testcase_07 AC 117 ms
41,024 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 111 ms
41,140 KB
testcase_11 WA -
testcase_12 AC 121 ms
41,228 KB
testcase_13 WA -
testcase_14 AC 121 ms
41,324 KB
testcase_15 WA -
testcase_16 AC 128 ms
41,448 KB
testcase_17 AC 130 ms
41,404 KB
testcase_18 AC 106 ms
41,220 KB
testcase_19 AC 118 ms
40,868 KB
testcase_20 AC 126 ms
40,972 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 118 ms
41,404 KB
testcase_24 WA -
testcase_25 AC 120 ms
41,276 KB
testcase_26 AC 129 ms
41,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int n = N - 100;
        int d = 0;
        if(N % 2 == 0){
            System.out.println(N);
        }
        while(d == 0){
            if(n % 2 == 0&&n!=2){
                System.out.println(n);
                d++;
            }else{
                n++;
            }
        }
    }
}
0