結果

問題 No.1128 Wedding Ceremony
ユーザー Yosuke YamaguchiYosuke Yamaguchi
提出日時 2021-02-03 23:35:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 3,159 ms
コンパイル使用メモリ 74,612 KB
実行使用メモリ 54,376 KB
最終ジャッジ日時 2024-06-30 06:58:08
合計ジャッジ時間 6,875 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
54,112 KB
testcase_01 AC 123 ms
53,936 KB
testcase_02 AC 124 ms
53,992 KB
testcase_03 AC 121 ms
53,884 KB
testcase_04 AC 122 ms
54,152 KB
testcase_05 AC 125 ms
54,320 KB
testcase_06 AC 122 ms
53,848 KB
testcase_07 AC 111 ms
52,968 KB
testcase_08 AC 123 ms
54,012 KB
testcase_09 AC 123 ms
53,832 KB
testcase_10 AC 109 ms
52,804 KB
testcase_11 AC 126 ms
54,112 KB
testcase_12 AC 124 ms
53,984 KB
testcase_13 AC 122 ms
53,984 KB
testcase_14 AC 125 ms
53,872 KB
testcase_15 AC 126 ms
54,376 KB
testcase_16 AC 124 ms
53,884 KB
testcase_17 AC 126 ms
54,332 KB
testcase_18 AC 126 ms
54,160 KB
testcase_19 AC 127 ms
53,864 KB
testcase_20 AC 126 ms
53,960 KB
testcase_21 AC 125 ms
54,096 KB
testcase_22 AC 123 ms
53,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

// https://yukicoder.me/problems/no/1128
public class WeddingCeremony1128 {
  public static void main(String[] args) {
    // 標準入力から読み込む際に、Scan
    Scanner sc = new Scanner(System.in);

    // String 1つ分を読み込む
    int n = Integer.parseInt(sc.next());
    if (n % 2 == 0) {
      System.out.println(n + 1);
    } else {
      System.out.println(n);
    }
  }
}
0