結果

問題 No.2397 ω冪
ユーザー googol_S0googol_S0
提出日時 2023-01-10 20:42:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 1,139 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 86,524 KB
最終ジャッジ日時 2024-12-21 12:19:06
合計ジャッジ時間 3,815 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,828 KB
testcase_01 AC 37 ms
53,824 KB
testcase_02 AC 37 ms
52,840 KB
testcase_03 AC 38 ms
52,880 KB
testcase_04 AC 36 ms
52,980 KB
testcase_05 AC 38 ms
53,344 KB
testcase_06 AC 36 ms
52,516 KB
testcase_07 AC 37 ms
52,712 KB
testcase_08 AC 37 ms
52,940 KB
testcase_09 AC 37 ms
52,988 KB
testcase_10 AC 37 ms
53,564 KB
testcase_11 AC 36 ms
53,620 KB
testcase_12 AC 36 ms
53,384 KB
testcase_13 AC 37 ms
52,628 KB
testcase_14 AC 38 ms
53,292 KB
testcase_15 AC 38 ms
52,072 KB
testcase_16 AC 38 ms
52,332 KB
testcase_17 AC 37 ms
53,556 KB
testcase_18 AC 38 ms
52,960 KB
testcase_19 AC 38 ms
52,672 KB
testcase_20 AC 38 ms
54,288 KB
testcase_21 AC 37 ms
52,604 KB
testcase_22 AC 39 ms
52,952 KB
testcase_23 AC 38 ms
53,352 KB
testcase_24 AC 38 ms
53,040 KB
testcase_25 AC 37 ms
52,568 KB
testcase_26 AC 38 ms
53,696 KB
testcase_27 AC 40 ms
52,532 KB
testcase_28 AC 37 ms
52,608 KB
testcase_29 AC 37 ms
53,220 KB
testcase_30 AC 37 ms
53,184 KB
testcase_31 AC 38 ms
53,008 KB
testcase_32 AC 47 ms
62,056 KB
testcase_33 AC 47 ms
62,328 KB
testcase_34 AC 38 ms
53,076 KB
testcase_35 AC 44 ms
60,156 KB
testcase_36 AC 189 ms
86,384 KB
testcase_37 AC 196 ms
86,200 KB
testcase_38 AC 182 ms
85,688 KB
testcase_39 AC 183 ms
86,524 KB
testcase_40 AC 64 ms
78,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=input()
M=input()
assert(1<=len(N))
assert(len(N)<=100000)
assert(1<=len(M))
assert(len(M)<=100000)
assert((N=='0')or(N[0]!='0'))
assert((N=='0')or(N[0]!='0'))
assert((M=='0')or(M[0]!='0'))

X=[0,1,5,2,10,6,5,3,9,11,8,7,10,6,5,4,12]
X=[X[i]+1 for i in range(len(X))]
def f(N):
  P=[]
  b=0
  while N:
    if N&1:
      v=X[b]
      P.append(v)
      b=0
    else:
      b+=1
    N>>=1
  P=P[::-1]
  A=[]
  for i in range(len(P)):
    while len(A)>0 and A[-1][0]<P[i]:
      del A[-1]
    if len(A)>0 and A[-1][0]==P[i]:
      A[-1]=(A[-1][0],A[-1][1]+1)
    else:
      A.append((P[i],1))
  return tuple(A)

P=[]
Q=[]
b=0
for i in range(len(N)-1,-1,-1):
  if N[i]=='0':
    b+=1
  else:
    v=f(b)
    P.append(v)
    b=0
P=P[::-1]
b=0
for i in range(len(M)-1,-1,-1):
  if M[i]=='0':
    b+=1
  else:
    v=f(b)
    Q.append(v)
    b=0
Q=Q[::-1]
A=[]
B=[]
for i in range(len(P)):
  v=P[i]
  while len(A)>0:
    if A[-1]<v:
      del A[-1]
    else:
      break
  A.append(v)
for i in range(len(Q)):
  v=Q[i]
  while len(B)>0:
    if B[-1]<v:
      del B[-1]
    else:
      break
  B.append(v)
if A<B:
  print('Yes')
else:
  print('No')
0