結果

問題 No.192 合成数
ユーザー yagi2yagi2
提出日時 2017-04-21 16:51:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 288 bytes
コンパイル時間 2,175 ms
コンパイル使用メモリ 74,664 KB
実行使用メモリ 54,524 KB
最終ジャッジ日時 2024-06-27 02:10:51
合計ジャッジ時間 7,196 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,880 KB
testcase_01 AC 127 ms
54,176 KB
testcase_02 AC 130 ms
53,868 KB
testcase_03 AC 127 ms
53,780 KB
testcase_04 AC 126 ms
54,068 KB
testcase_05 AC 131 ms
54,052 KB
testcase_06 AC 126 ms
53,744 KB
testcase_07 AC 114 ms
52,812 KB
testcase_08 AC 131 ms
53,980 KB
testcase_09 AC 137 ms
53,856 KB
testcase_10 AC 135 ms
54,040 KB
testcase_11 AC 140 ms
53,576 KB
testcase_12 AC 139 ms
53,684 KB
testcase_13 AC 125 ms
54,032 KB
testcase_14 AC 129 ms
54,524 KB
testcase_15 AC 131 ms
53,892 KB
testcase_16 AC 129 ms
54,064 KB
testcase_17 AC 129 ms
53,952 KB
testcase_18 AC 139 ms
54,424 KB
testcase_19 AC 136 ms
54,088 KB
testcase_20 AC 127 ms
53,916 KB
testcase_21 AC 128 ms
54,168 KB
testcase_22 AC 128 ms
54,144 KB
testcase_23 AC 127 ms
53,836 KB
testcase_24 AC 139 ms
54,008 KB
testcase_25 AC 126 ms
54,088 KB
testcase_26 AC 131 ms
53,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int N = Integer.parseInt(sc.next());

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