結果

問題 No.192 合成数
ユーザー htensaihtensai
提出日時 2019-12-10 14:26:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 250 bytes
コンパイル時間 2,123 ms
コンパイル使用メモリ 73,888 KB
実行使用メモリ 54,660 KB
最終ジャッジ日時 2024-06-24 01:48:58
合計ジャッジ時間 7,557 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
54,068 KB
testcase_01 AC 151 ms
53,952 KB
testcase_02 AC 149 ms
53,928 KB
testcase_03 AC 152 ms
53,908 KB
testcase_04 AC 152 ms
54,364 KB
testcase_05 AC 153 ms
53,988 KB
testcase_06 AC 148 ms
54,152 KB
testcase_07 AC 150 ms
54,660 KB
testcase_08 AC 152 ms
54,160 KB
testcase_09 AC 152 ms
54,248 KB
testcase_10 AC 152 ms
54,008 KB
testcase_11 AC 148 ms
53,816 KB
testcase_12 AC 149 ms
54,272 KB
testcase_13 AC 149 ms
54,288 KB
testcase_14 AC 149 ms
54,240 KB
testcase_15 AC 150 ms
54,288 KB
testcase_16 AC 150 ms
54,400 KB
testcase_17 AC 150 ms
54,428 KB
testcase_18 AC 149 ms
54,144 KB
testcase_19 AC 149 ms
54,060 KB
testcase_20 AC 150 ms
53,884 KB
testcase_21 AC 148 ms
54,156 KB
testcase_22 AC 151 ms
54,052 KB
testcase_23 AC 151 ms
54,008 KB
testcase_24 AC 149 ms
53,880 KB
testcase_25 AC 151 ms
53,868 KB
testcase_26 AC 154 ms
54,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        if (n % 2 == 1) {
            n++;
        }
        System.out.println(n);
  }
}
0