結果

問題 No.1128 Wedding Ceremony
ユーザー planetWorldYplanetWorldY
提出日時 2020-10-28 19:09:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 357 bytes
コンパイル時間 2,330 ms
コンパイル使用メモリ 77,052 KB
実行使用メモリ 55,828 KB
最終ジャッジ日時 2024-07-21 22:18:46
合計ジャッジ時間 6,609 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 115 ms
52,792 KB
testcase_04 AC 127 ms
53,912 KB
testcase_05 AC 125 ms
53,988 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 121 ms
53,956 KB
testcase_10 AC 127 ms
54,176 KB
testcase_11 WA -
testcase_12 AC 123 ms
53,912 KB
testcase_13 AC 122 ms
54,108 KB
testcase_14 AC 114 ms
52,944 KB
testcase_15 WA -
testcase_16 AC 122 ms
53,808 KB
testcase_17 WA -
testcase_18 AC 125 ms
53,916 KB
testcase_19 AC 124 ms
54,088 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 120 ms
53,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n_1 = sc.nextInt();
        if(n_1 >= 2 || 3 / n_1 != 0 && n_1 >= 2 || n_1 / 2 == 0){
            System.out.println(n_1 + 1);
        }else{
            System.out.println(n_1);
        }
     
        }
    }
  
0