結果

問題 No.192 合成数
ユーザー TatsuDXTatsuDX
提出日時 2016-09-09 00:27:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 242 bytes
コンパイル時間 4,147 ms
コンパイル使用メモリ 74,192 KB
実行使用メモリ 56,112 KB
最終ジャッジ日時 2024-06-27 02:04:07
合計ジャッジ時間 8,683 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
53,976 KB
testcase_01 AC 129 ms
54,168 KB
testcase_02 AC 129 ms
54,184 KB
testcase_03 AC 129 ms
53,872 KB
testcase_04 AC 129 ms
53,892 KB
testcase_05 AC 127 ms
53,920 KB
testcase_06 AC 126 ms
53,508 KB
testcase_07 AC 126 ms
54,096 KB
testcase_08 AC 127 ms
54,108 KB
testcase_09 AC 122 ms
52,496 KB
testcase_10 AC 112 ms
53,044 KB
testcase_11 AC 125 ms
53,860 KB
testcase_12 AC 119 ms
53,956 KB
testcase_13 AC 113 ms
53,008 KB
testcase_14 AC 124 ms
53,788 KB
testcase_15 AC 132 ms
56,112 KB
testcase_16 AC 134 ms
53,972 KB
testcase_17 AC 111 ms
53,104 KB
testcase_18 AC 125 ms
53,844 KB
testcase_19 AC 124 ms
53,940 KB
testcase_20 AC 126 ms
53,732 KB
testcase_21 AC 129 ms
53,876 KB
testcase_22 AC 125 ms
54,160 KB
testcase_23 AC 126 ms
54,112 KB
testcase_24 AC 125 ms
54,088 KB
testcase_25 AC 128 ms
54,104 KB
testcase_26 AC 127 ms
53,764 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	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