結果

問題 No.2881 Mod 2^N
ユーザー hiro1729hiro1729
提出日時 2024-08-24 13:46:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 54,104 KB
最終ジャッジ日時 2024-08-24 13:46:38
合計ジャッジ時間 3,156 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,372 KB
testcase_01 AC 37 ms
53,556 KB
testcase_02 AC 36 ms
53,196 KB
testcase_03 AC 40 ms
52,636 KB
testcase_04 AC 36 ms
52,804 KB
testcase_05 AC 35 ms
53,488 KB
testcase_06 AC 33 ms
53,912 KB
testcase_07 AC 35 ms
54,104 KB
testcase_08 AC 35 ms
52,940 KB
testcase_09 AC 35 ms
53,052 KB
testcase_10 AC 37 ms
52,648 KB
testcase_11 AC 35 ms
53,164 KB
testcase_12 AC 35 ms
52,404 KB
testcase_13 AC 36 ms
53,412 KB
testcase_14 AC 33 ms
53,092 KB
testcase_15 AC 38 ms
52,088 KB
testcase_16 AC 35 ms
53,248 KB
testcase_17 AC 38 ms
54,072 KB
testcase_18 AC 36 ms
52,136 KB
testcase_19 AC 34 ms
52,948 KB
testcase_20 AC 34 ms
53,248 KB
testcase_21 AC 35 ms
52,116 KB
testcase_22 AC 34 ms
53,004 KB
testcase_23 AC 36 ms
52,544 KB
testcase_24 AC 34 ms
53,288 KB
testcase_25 AC 33 ms
53,220 KB
testcase_26 AC 35 ms
52,696 KB
testcase_27 AC 36 ms
53,144 KB
testcase_28 AC 35 ms
52,460 KB
testcase_29 AC 36 ms
53,876 KB
testcase_30 AC 34 ms
52,128 KB
testcase_31 AC 35 ms
52,440 KB
testcase_32 AC 34 ms
52,936 KB
testcase_33 AC 35 ms
53,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X, Y = map(int, input().split())
if X > 0 and Y == 0:
	exit(print(-1))
if X == Y:
	print(0)
	exit(print())
if Y & 1 == 0:
	exit(print(-1))
ans = [N]
x = [i for i in range(N) if Y & (1 << i)]
ans += [x[i + 1] - x[i] for i in range(len(x) - 1)][::-1]
print(len(ans))
print(*ans)
0