結果

問題 No.2397 ω冪
ユーザー かつっぱ競プロかつっぱ競プロ
提出日時 2023-07-28 23:14:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,227 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 118,852 KB
最終ジャッジ日時 2024-10-06 21:20:36
合計ジャッジ時間 44,895 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 994 ms
111,300 KB
testcase_01 AC 1,012 ms
111,684 KB
testcase_02 AC 1,011 ms
112,584 KB
testcase_03 AC 993 ms
111,812 KB
testcase_04 AC 1,009 ms
112,324 KB
testcase_05 AC 1,021 ms
112,452 KB
testcase_06 AC 994 ms
112,836 KB
testcase_07 AC 1,002 ms
112,404 KB
testcase_08 AC 998 ms
112,452 KB
testcase_09 AC 1,001 ms
112,716 KB
testcase_10 AC 1,024 ms
112,584 KB
testcase_11 AC 991 ms
112,580 KB
testcase_12 AC 994 ms
112,704 KB
testcase_13 AC 1,004 ms
112,836 KB
testcase_14 WA -
testcase_15 AC 985 ms
112,956 KB
testcase_16 AC 997 ms
112,580 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 996 ms
112,452 KB
testcase_20 AC 1,001 ms
112,576 KB
testcase_21 AC 1,025 ms
112,968 KB
testcase_22 AC 1,008 ms
112,828 KB
testcase_23 AC 1,118 ms
112,456 KB
testcase_24 AC 1,109 ms
112,704 KB
testcase_25 AC 1,124 ms
112,456 KB
testcase_26 AC 1,092 ms
112,328 KB
testcase_27 AC 1,122 ms
112,328 KB
testcase_28 AC 1,073 ms
112,712 KB
testcase_29 AC 1,065 ms
112,324 KB
testcase_30 AC 1,069 ms
112,580 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 1,087 ms
112,968 KB
testcase_35 AC 1,058 ms
112,632 KB
testcase_36 AC 1,080 ms
114,632 KB
testcase_37 AC 1,082 ms
114,632 KB
testcase_38 WA -
testcase_39 AC 1,124 ms
115,140 KB
testcase_40 AC 1,097 ms
118,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

order = [0, 1]

def toCnt(x):
    if x == 0:return defaultdict(int)
    k = 0
    while x % 2 == 0:
        x //= 2
        k += 1
    tmp = toCnt(x // 2)
    tmp[k] += 1
    return tmp
   
# x > y
def gt(x, y):
    xCnt = toCnt(x)
    yCnt = toCnt(y)

    for p in order[::-1]:
        if xCnt[p] > yCnt[p]:
            return True
        if xCnt[p] < xCnt[p]:
            return False
    return False
        

for i in range(2, 20):
    k = 0
    while k < len(order) and gt(i, order[k]):
        k += 1
    order.insert(k, i)


def toCnt2(x):
    xCnt = toCnt(x)
    cnt = [0] * 20
    for i in range(20):
        cnt[order.index(i)] = xCnt[i]
    return cnt[::-1]

order2 = sorted(range(10**5), key=toCnt2)

rank = [0] * (10**5)
for i in range(10**5):
    rank[order2[i]] = i



def cnt3(N):
    nCnt = [0] * (10 ** 5)
    if(N == '0'):
        return nCnt
    nOne = []
    for i in range(len(N)):
        if(N[i] == '1'):
            nOne.append(i)
    nOne.append(len(N))

    for i in range(len(nOne) - 1):
        nCnt[rank[nOne[i+1] - nOne[i] - 1]] += 1
    return nCnt[::-1]

nCnt = cnt3(input())
mCnt = cnt3(input())

if nCnt < mCnt:
    print("Yes")
else:
    print("No")


0