結果

問題 No.2881 Mod 2^N
ユーザー hiro1729hiro1729
提出日時 2024-08-24 13:40:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 249 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,492 KB
実行使用メモリ 53,896 KB
最終ジャッジ日時 2024-08-24 13:41:01
合計ジャッジ時間 3,987 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 34 ms
52,828 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 34 ms
51,888 KB
testcase_07 AC 35 ms
52,504 KB
testcase_08 AC 34 ms
52,756 KB
testcase_09 AC 37 ms
52,444 KB
testcase_10 AC 34 ms
52,340 KB
testcase_11 WA -
testcase_12 AC 34 ms
52,824 KB
testcase_13 AC 33 ms
52,808 KB
testcase_14 AC 35 ms
52,192 KB
testcase_15 AC 33 ms
53,016 KB
testcase_16 AC 35 ms
52,820 KB
testcase_17 AC 34 ms
52,940 KB
testcase_18 AC 38 ms
53,688 KB
testcase_19 AC 35 ms
53,004 KB
testcase_20 AC 31 ms
52,832 KB
testcase_21 AC 33 ms
52,092 KB
testcase_22 AC 33 ms
52,824 KB
testcase_23 AC 34 ms
53,896 KB
testcase_24 AC 35 ms
52,620 KB
testcase_25 AC 33 ms
52,280 KB
testcase_26 AC 33 ms
52,936 KB
testcase_27 AC 35 ms
53,600 KB
testcase_28 AC 32 ms
52,072 KB
testcase_29 AC 33 ms
52,832 KB
testcase_30 AC 33 ms
53,608 KB
testcase_31 AC 32 ms
51,872 KB
testcase_32 AC 32 ms
53,036 KB
testcase_33 AC 33 ms
53,356 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())
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) - 2, -1, -1)]
print(len(ans))
print(*ans)
0