結果

問題 No.192 合成数
ユーザー dazydazy
提出日時 2017-02-23 15:13:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 3,583 ms
コンパイル使用メモリ 74,284 KB
実行使用メモリ 54,380 KB
最終ジャッジ日時 2024-06-27 02:09:36
合計ジャッジ時間 8,146 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,948 KB
testcase_01 AC 140 ms
53,824 KB
testcase_02 AC 134 ms
54,304 KB
testcase_03 AC 139 ms
54,076 KB
testcase_04 AC 133 ms
54,124 KB
testcase_05 AC 135 ms
54,288 KB
testcase_06 AC 135 ms
54,356 KB
testcase_07 AC 133 ms
54,120 KB
testcase_08 AC 133 ms
54,196 KB
testcase_09 AC 134 ms
54,324 KB
testcase_10 AC 133 ms
54,240 KB
testcase_11 AC 130 ms
53,832 KB
testcase_12 AC 130 ms
53,836 KB
testcase_13 AC 135 ms
53,984 KB
testcase_14 AC 133 ms
53,896 KB
testcase_15 AC 131 ms
53,896 KB
testcase_16 AC 149 ms
53,852 KB
testcase_17 AC 131 ms
53,988 KB
testcase_18 AC 130 ms
54,068 KB
testcase_19 AC 132 ms
54,380 KB
testcase_20 AC 132 ms
53,924 KB
testcase_21 AC 133 ms
54,308 KB
testcase_22 AC 131 ms
53,840 KB
testcase_23 AC 133 ms
53,956 KB
testcase_24 AC 132 ms
53,964 KB
testcase_25 AC 132 ms
54,068 KB
testcase_26 AC 131 ms
53,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Run {
    public static void main (String arg[]) {
        Scanner scan = new Scanner(System.in);
        int N = scan.nextInt();
        int ans = N;
        if (N%2==1) ans++;

        System.out.println(ans);
    }
}

0