結果

問題 No.192 合成数
ユーザー samplelpmassamplelpmas
提出日時 2016-11-24 12:40:37
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 312 bytes
コンパイル時間 2,135 ms
コンパイル使用メモリ 73,784 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-05-05 12:54:51
合計ジャッジ時間 8,375 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,924 KB
testcase_01 AC 119 ms
40,196 KB
testcase_02 AC 119 ms
39,912 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 132 ms
41,056 KB
testcase_06 AC 132 ms
41,164 KB
testcase_07 AC 128 ms
41,136 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 130 ms
41,220 KB
testcase_11 WA -
testcase_12 AC 129 ms
41,228 KB
testcase_13 WA -
testcase_14 AC 114 ms
40,068 KB
testcase_15 WA -
testcase_16 AC 131 ms
41,144 KB
testcase_17 AC 120 ms
39,896 KB
testcase_18 AC 130 ms
41,488 KB
testcase_19 AC 136 ms
41,220 KB
testcase_20 AC 130 ms
41,200 KB
testcase_21 WA -
testcase_22 AC 126 ms
41,036 KB
testcase_23 AC 113 ms
39,880 KB
testcase_24 WA -
testcase_25 AC 130 ms
41,076 KB
testcase_26 AC 133 ms
41,208 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 / 2);
        } else {
            System.out.println(N - 1);
        }

    }

}
0