結果

問題 No.1128 Wedding Ceremony
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-04 09:47:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 2,870 ms
コンパイル使用メモリ 74,280 KB
実行使用メモリ 54,444 KB
最終ジャッジ日時 2024-10-04 13:22:15
合計ジャッジ時間 6,468 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,444 KB
testcase_01 AC 119 ms
53,628 KB
testcase_02 AC 100 ms
52,504 KB
testcase_03 AC 115 ms
53,728 KB
testcase_04 AC 114 ms
53,976 KB
testcase_05 AC 113 ms
54,048 KB
testcase_06 AC 113 ms
53,896 KB
testcase_07 AC 102 ms
52,940 KB
testcase_08 AC 109 ms
53,732 KB
testcase_09 AC 114 ms
53,812 KB
testcase_10 AC 115 ms
53,864 KB
testcase_11 AC 114 ms
54,084 KB
testcase_12 AC 116 ms
53,976 KB
testcase_13 AC 118 ms
53,640 KB
testcase_14 AC 119 ms
53,860 KB
testcase_15 AC 113 ms
53,996 KB
testcase_16 AC 98 ms
52,580 KB
testcase_17 AC 107 ms
52,804 KB
testcase_18 AC 120 ms
54,344 KB
testcase_19 AC 106 ms
53,448 KB
testcase_20 AC 113 ms
54,024 KB
testcase_21 AC 104 ms
52,708 KB
testcase_22 AC 113 ms
53,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {

	    public static void main(String[] args) throws Exception {

	    	Scanner sc = new Scanner(System.in);
	    	int x = sc.nextInt();
	    	sc.close();

	    	System.out.println(x % 2== 0 ? x + 1 : x);

	    	}



}
0