結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,360 KB
testcase_01 AC 131 ms
41,152 KB
testcase_02 AC 139 ms
41,128 KB
testcase_03 AC 146 ms
41,228 KB
testcase_04 AC 146 ms
41,380 KB
testcase_05 AC 148 ms
41,452 KB
testcase_06 AC 147 ms
41,268 KB
testcase_07 AC 151 ms
41,604 KB
testcase_08 AC 151 ms
41,588 KB
testcase_09 AC 150 ms
41,152 KB
testcase_10 AC 151 ms
41,560 KB
testcase_11 AC 151 ms
41,172 KB
testcase_12 AC 151 ms
41,000 KB
testcase_13 AC 148 ms
41,324 KB
testcase_14 AC 136 ms
41,124 KB
testcase_15 AC 132 ms
41,248 KB
testcase_16 AC 132 ms
41,036 KB
testcase_17 AC 131 ms
41,432 KB
testcase_18 AC 130 ms
41,200 KB
testcase_19 AC 134 ms
41,124 KB
testcase_20 AC 139 ms
41,144 KB
testcase_21 AC 146 ms
41,776 KB
testcase_22 AC 147 ms
41,476 KB
testcase_23 AC 149 ms
41,180 KB
testcase_24 AC 149 ms
41,228 KB
testcase_25 AC 145 ms
41,724 KB
testcase_26 AC 136 ms
41,052 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