結果

問題 No.2881 Mod 2^N
ユーザー timitimi
提出日時 2024-11-12 22:17:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 264 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 54,040 KB
最終ジャッジ日時 2024-11-12 22:17:48
合計ジャッジ時間 3,962 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,200 KB
testcase_01 AC 36 ms
53,292 KB
testcase_02 AC 37 ms
51,824 KB
testcase_03 AC 38 ms
52,612 KB
testcase_04 AC 36 ms
53,036 KB
testcase_05 AC 37 ms
52,108 KB
testcase_06 AC 36 ms
51,744 KB
testcase_07 AC 37 ms
54,040 KB
testcase_08 AC 37 ms
52,888 KB
testcase_09 AC 37 ms
52,464 KB
testcase_10 AC 37 ms
53,188 KB
testcase_11 AC 36 ms
53,052 KB
testcase_12 AC 37 ms
53,228 KB
testcase_13 AC 37 ms
52,396 KB
testcase_14 AC 38 ms
52,348 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 38 ms
53,004 KB
testcase_18 WA -
testcase_19 AC 36 ms
52,328 KB
testcase_20 WA -
testcase_21 AC 37 ms
52,144 KB
testcase_22 AC 37 ms
52,028 KB
testcase_23 AC 39 ms
52,120 KB
testcase_24 AC 37 ms
53,668 KB
testcase_25 AC 37 ms
53,192 KB
testcase_26 AC 37 ms
52,308 KB
testcase_27 AC 37 ms
52,520 KB
testcase_28 AC 37 ms
53,204 KB
testcase_29 AC 37 ms
52,208 KB
testcase_30 AC 37 ms
52,704 KB
testcase_31 AC 44 ms
52,344 KB
testcase_32 AC 36 ms
52,068 KB
testcase_33 AC 37 ms
52,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N,X,Y=map(int,input().split())
if Y%2==0:
  print(-1)
  exit()
ans=[]
ans.append(N)
S=bin(Y)[2:]
c=0;f=0
for s in S:
  c+=1
  if s=='1':
    if f==0:
      f=1
    else:
      ans.append(c)
    c=0 
print(len(ans))
print(*ans)
0