結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 123 ms
54,088 KB
testcase_06 AC 118 ms
53,816 KB
testcase_07 AC 121 ms
53,872 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 119 ms
54,316 KB
testcase_11 WA -
testcase_12 AC 123 ms
54,024 KB
testcase_13 WA -
testcase_14 AC 119 ms
53,940 KB
testcase_15 WA -
testcase_16 AC 112 ms
52,992 KB
testcase_17 AC 119 ms
54,064 KB
testcase_18 AC 124 ms
53,844 KB
testcase_19 AC 121 ms
53,992 KB
testcase_20 AC 118 ms
53,852 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 115 ms
52,820 KB
testcase_24 WA -
testcase_25 AC 125 ms
53,872 KB
testcase_26 AC 118 ms
53,920 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