結果

問題 No.862 XORでX
ユーザー htensaihtensai
提出日時 2019-12-30 22:33:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 236 ms / 2,000 ms
コード長 1,907 bytes
コンパイル時間 2,453 ms
コンパイル使用メモリ 80,056 KB
実行使用メモリ 62,068 KB
最終ジャッジ日時 2024-11-15 20:09:49
合計ジャッジ時間 11,446 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
53,852 KB
testcase_01 AC 135 ms
53,904 KB
testcase_02 AC 134 ms
53,940 KB
testcase_03 AC 134 ms
54,376 KB
testcase_04 AC 135 ms
54,164 KB
testcase_05 AC 133 ms
54,060 KB
testcase_06 AC 135 ms
53,996 KB
testcase_07 AC 134 ms
54,112 KB
testcase_08 AC 164 ms
54,088 KB
testcase_09 AC 168 ms
54,104 KB
testcase_10 AC 165 ms
54,064 KB
testcase_11 AC 167 ms
54,368 KB
testcase_12 AC 138 ms
54,048 KB
testcase_13 AC 136 ms
53,584 KB
testcase_14 AC 136 ms
54,072 KB
testcase_15 AC 135 ms
53,640 KB
testcase_16 AC 229 ms
59,904 KB
testcase_17 AC 231 ms
59,376 KB
testcase_18 AC 226 ms
59,560 KB
testcase_19 AC 222 ms
59,836 KB
testcase_20 AC 235 ms
61,736 KB
testcase_21 AC 236 ms
62,068 KB
testcase_22 AC 233 ms
61,828 KB
testcase_23 AC 234 ms
60,900 KB
testcase_24 AC 233 ms
61,896 KB
testcase_25 AC 234 ms
61,768 KB
testcase_26 AC 234 ms
60,864 KB
testcase_27 AC 234 ms
61,868 KB
testcase_28 AC 228 ms
61,700 KB
testcase_29 AC 235 ms
61,488 KB
testcase_30 AC 228 ms
61,572 KB
testcase_31 AC 236 ms
61,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int x = sc.nextInt();
        int mod = n % 4;
        ArrayList<Integer> list = new ArrayList<>();
        if (x == 1) {
            if (mod == 0) {
                list.add(1);
                list.add(6);
                list.add(100003);
                list.add(100005);
                x = 6;
            } else if (mod == 3) {
                list.add(100003);
                list.add(100005);
                list.add(7);
                x = 6;
            } else if (mod == 2) {
                list.add(100004);
                list.add(100005);
            } else {
                list.add(1);
            }
        } else {
            if (mod == 0) {
                list.add(x);
                list.add(1);
                list.add(100004);
                list.add(100005);
            } else if (mod == 3) {
                if (x % 2 == 0) {
                    list.add(x + 1);
                } else {
                    list.add(x - 1);
                }
                list.add(100004);
                list.add(100005);
            } else if (mod == 2) {
                 if (x % 2 == 0) {
                    list.add(x + 1);
                } else {
                    list.add(x - 1);
                }
                list.add(1);
            } else {
                list.add(x);
            }
        }
        int idx = 2;
        while (list.size() < n) {
            while (idx == x || idx + 1 == x) {
                idx += 2;
            }
            list.add(idx);
            list.add(idx + 1);
            idx += 2;
        }
        StringBuilder sb = new StringBuilder();
        for (int y : list) {
            sb.append(y).append("\n");
        }
        System.out.print(sb);
    }
    
 }
0