結果

問題 No.192 合成数
ユーザー samplelpmassamplelpmas
提出日時 2016-11-24 12:42:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 2,094 ms
コンパイル使用メモリ 73,944 KB
実行使用メモリ 41,712 KB
最終ジャッジ日時 2024-06-27 02:06:10
合計ジャッジ時間 7,188 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
40,968 KB
testcase_01 AC 127 ms
41,156 KB
testcase_02 AC 113 ms
39,768 KB
testcase_03 AC 127 ms
41,072 KB
testcase_04 AC 124 ms
41,456 KB
testcase_05 AC 111 ms
39,768 KB
testcase_06 AC 124 ms
41,596 KB
testcase_07 AC 112 ms
40,072 KB
testcase_08 AC 126 ms
41,316 KB
testcase_09 AC 127 ms
41,540 KB
testcase_10 AC 127 ms
41,444 KB
testcase_11 AC 124 ms
41,540 KB
testcase_12 AC 126 ms
41,440 KB
testcase_13 AC 125 ms
41,048 KB
testcase_14 AC 129 ms
41,576 KB
testcase_15 AC 125 ms
41,488 KB
testcase_16 AC 122 ms
41,016 KB
testcase_17 AC 124 ms
41,160 KB
testcase_18 AC 125 ms
41,184 KB
testcase_19 AC 123 ms
41,712 KB
testcase_20 AC 122 ms
41,360 KB
testcase_21 AC 126 ms
41,244 KB
testcase_22 AC 125 ms
41,284 KB
testcase_23 AC 122 ms
41,288 KB
testcase_24 AC 123 ms
41,124 KB
testcase_25 AC 112 ms
40,228 KB
testcase_26 AC 129 ms
41,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int N = sc.nextInt();

        if (N % 2 == 0) {
            System.out.println(N);
        } else {
            System.out.println(N - 1);
        }

    }

}
0