結果

問題 No.862 XORでX
ユーザー ks2mks2m
提出日時 2019-08-09 23:47:45
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,769 bytes
コンパイル時間 2,420 ms
コンパイル使用メモリ 77,800 KB
実行使用メモリ 65,132 KB
最終ジャッジ日時 2024-07-19 15:59:12
合計ジャッジ時間 15,226 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,304 KB
testcase_01 AC 54 ms
50,152 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 54 ms
49,932 KB
testcase_05 AC 54 ms
49,776 KB
testcase_06 AC 54 ms
49,824 KB
testcase_07 AC 53 ms
49,924 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 54 ms
49,832 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 54 ms
50,160 KB
testcase_16 AC 467 ms
64,352 KB
testcase_17 AC 444 ms
62,624 KB
testcase_18 AC 449 ms
62,428 KB
testcase_19 AC 436 ms
62,452 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 526 ms
64,032 KB
testcase_25 AC 529 ms
63,328 KB
testcase_26 AC 537 ms
63,512 KB
testcase_27 AC 527 ms
62,924 KB
testcase_28 AC 530 ms
63,124 KB
testcase_29 AC 530 ms
62,812 KB
testcase_30 AC 529 ms
62,908 KB
testcase_31 AC 523 ms
62,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		int n = Integer.parseInt(sa[0]);
		int x = Integer.parseInt(sa[1]);
		br.close();

		int n4 = n % 4;
		if (n4 == 0) n4 = 4;
		int x4 = x % 4;
		int l = x - x4;
		int r = x - x4 + 4;
		int end = n - n4 + 8;
		if (8 <= x && x4 <= n4) end += 4;

		for (int i = 8; i < end; i++) {
			if (l <= i && i < r) {
				continue;
			}
			System.out.println(i);
		}

		switch (n4) {
		case 1:
			System.out.println(x);
			break;
		case 2:
			if (x == 1) {
				System.out.println(2);
				System.out.println(3);
			} else {
				System.out.println(x % 2 == 0 ? x + 1 : x - 1);
				System.out.println(1);
			}
			break;
		case 3:
			if (x == 1) {
				System.out.println(3);
				System.out.println(5);
				System.out.println(7);
			} else if (x < 4) {
				System.out.println(x % 2 == 0 ? x + 1 : x - 1);
				System.out.println(6);
				System.out.println(7);
			} else {
				System.out.println(x % 2 == 0 ? x + 1 : x - 1);
				System.out.println(2);
				System.out.println(3);
			}
			break;
		default:
			if (x == 1) {
				System.out.println(1);
				System.out.println(2);
				System.out.println(4);
				System.out.println(6);
			} else if (x < 4) {
				System.out.println(x);
				System.out.println(1);
				System.out.println(4);
				System.out.println(5);
			} else {
				System.out.println(x);
				System.out.println(1);
				if (x4 < 2) {
					System.out.println(x - x4 + 2);
					System.out.println(x - x4 + 3);
				} else {
					System.out.println(x - x4 + 0);
					System.out.println(x - x4 + 1);
				}
			}
		}
	}
}
0