結果

問題 No.862 XORでX
ユーザー htensaihtensai
提出日時 2019-12-25 11:37:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,359 bytes
コンパイル時間 1,916 ms
コンパイル使用メモリ 77,824 KB
実行使用メモリ 56,656 KB
最終ジャッジ日時 2024-09-24 17:59:41
合計ジャッジ時間 10,189 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
54,128 KB
testcase_01 AC 109 ms
52,964 KB
testcase_02 AC 116 ms
54,080 KB
testcase_03 AC 117 ms
53,972 KB
testcase_04 AC 122 ms
54,072 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 148 ms
54,096 KB
testcase_09 AC 145 ms
54,188 KB
testcase_10 AC 140 ms
54,004 KB
testcase_11 AC 138 ms
53,864 KB
testcase_12 AC 121 ms
53,876 KB
testcase_13 AC 120 ms
53,872 KB
testcase_14 AC 123 ms
54,124 KB
testcase_15 AC 123 ms
54,148 KB
testcase_16 WA -
testcase_17 AC 174 ms
56,184 KB
testcase_18 AC 184 ms
56,472 KB
testcase_19 AC 173 ms
55,780 KB
testcase_20 AC 180 ms
56,432 KB
testcase_21 AC 180 ms
56,140 KB
testcase_22 AC 178 ms
56,224 KB
testcase_23 AC 175 ms
56,548 KB
testcase_24 AC 182 ms
56,492 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 183 ms
56,424 KB
testcase_29 AC 175 ms
56,072 KB
testcase_30 AC 169 ms
56,472 KB
testcase_31 AC 174 ms
56,656 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[] result = new int[n];
        int mod = n % 4;
        if (mod == 0) {
            n--;
            result[n] = x;
            n--;
            result[n] = 1;
            n--;
            result[n] = 100005;
            n--;
            result[n] = 100004;
        } else if (mod == 1) {
            n--;
            result[n] = x;
        } else if (mod == 2) {
            n--;
            result[n] = x ^ 1;
            n--;
            result[n] = 1;
        } else {
            n--;
            result[n] = x ^ 1;
            n--;
            result[n] = 100005;
            n--;
            result[n] = 100004;
        }
        int idx = 2;
        while (n > 0) {
            if (idx == x || idx + 1 == x || idx == (x ^ 1) || idx + 1 == (x ^ 1)) {
                idx += 2;
                continue;
            }
            n--;
            result[n] = idx;
            idx++;
            n--;
            result[n] = idx;
            idx++;
        }
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < result.length; i++) {
            sb.append(result[i]).append("\n");
        }
        System.out.print(sb);
    }
}
0