結果

問題 No.1871 divisXor
ユーザー ks2mks2m
提出日時 2022-03-11 22:43:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 2,120 ms
コンパイル使用メモリ 76,596 KB
実行使用メモリ 54,552 KB
最終ジャッジ日時 2024-09-22 13:00:08
合計ジャッジ時間 8,770 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
53,912 KB
testcase_01 AC 128 ms
54,156 KB
testcase_02 AC 130 ms
54,100 KB
testcase_03 AC 133 ms
54,152 KB
testcase_04 AC 135 ms
53,884 KB
testcase_05 AC 132 ms
54,240 KB
testcase_06 AC 133 ms
53,832 KB
testcase_07 AC 133 ms
53,980 KB
testcase_08 AC 134 ms
54,320 KB
testcase_09 AC 135 ms
53,872 KB
testcase_10 AC 135 ms
53,992 KB
testcase_11 AC 131 ms
54,204 KB
testcase_12 AC 132 ms
54,232 KB
testcase_13 AC 132 ms
53,916 KB
testcase_14 AC 134 ms
54,084 KB
testcase_15 AC 134 ms
54,056 KB
testcase_16 AC 133 ms
53,920 KB
testcase_17 AC 132 ms
54,152 KB
testcase_18 AC 132 ms
54,080 KB
testcase_19 AC 135 ms
54,520 KB
testcase_20 AC 132 ms
54,392 KB
testcase_21 AC 131 ms
54,444 KB
testcase_22 AC 132 ms
54,208 KB
testcase_23 AC 118 ms
52,848 KB
testcase_24 AC 131 ms
54,164 KB
testcase_25 AC 131 ms
54,152 KB
testcase_26 AC 131 ms
53,956 KB
testcase_27 AC 131 ms
54,052 KB
testcase_28 AC 131 ms
53,936 KB
testcase_29 AC 131 ms
54,332 KB
testcase_30 AC 133 ms
54,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.List;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		sc.close();

		List<Long> list = new ArrayList<>();
		for (int i = 39; i >= 0; i--) {
			if ((n >> i & 1) == 1 ^ list.size() % 2 == 1) {
				list.add(1L << i);
			}
		}
		if (list.isEmpty()) {
			System.out.println(-1);
		} else {
			System.out.println(list.size());
			StringBuilder sb = new StringBuilder();
			for (long e : list) {
				sb.append(e).append(' ');
			}
			sb.deleteCharAt(sb.length() - 1);
			System.out.println(sb.toString());
		}
	}
}
0