結果

問題 No.192 合成数
ユーザー spaciaspacia
提出日時 2015-12-15 23:36:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 318 bytes
コンパイル時間 2,184 ms
コンパイル使用メモリ 74,600 KB
実行使用メモリ 37,132 KB
最終ジャッジ日時 2024-06-27 01:52:33
合計ジャッジ時間 4,484 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
37,028 KB
testcase_01 AC 50 ms
36,448 KB
testcase_02 AC 52 ms
36,784 KB
testcase_03 AC 50 ms
36,436 KB
testcase_04 AC 50 ms
37,056 KB
testcase_05 AC 50 ms
36,768 KB
testcase_06 AC 50 ms
36,956 KB
testcase_07 AC 49 ms
36,748 KB
testcase_08 AC 50 ms
37,132 KB
testcase_09 AC 51 ms
36,424 KB
testcase_10 AC 51 ms
36,748 KB
testcase_11 AC 51 ms
36,868 KB
testcase_12 AC 49 ms
37,036 KB
testcase_13 AC 50 ms
37,104 KB
testcase_14 AC 50 ms
36,944 KB
testcase_15 AC 50 ms
36,804 KB
testcase_16 AC 51 ms
36,996 KB
testcase_17 AC 48 ms
36,804 KB
testcase_18 AC 49 ms
37,012 KB
testcase_19 AC 49 ms
37,072 KB
testcase_20 AC 51 ms
36,760 KB
testcase_21 AC 49 ms
36,572 KB
testcase_22 AC 49 ms
36,440 KB
testcase_23 AC 51 ms
36,924 KB
testcase_24 AC 52 ms
37,096 KB
testcase_25 AC 49 ms
36,988 KB
testcase_26 AC 48 ms
36,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main192 {
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int n = Integer.parseInt(br.readLine());
		System.out.println(n % 2 == 0 ? n : n + 1);
		
	}
}
0