結果

問題 No.1152 10億ゲーム
ユーザー 👑 rin204rin204
提出日時 2024-09-14 18:18:49
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,197 bytes
コンパイル時間 2,012 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 82,272 KB
平均クエリ数 13.76
最終ジャッジ日時 2024-09-14 18:19:02
合計ジャッジ時間 10,423 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 125 ms
69,224 KB
testcase_01 AC 119 ms
68,320 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 122 ms
68,320 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 121 ms
68,704 KB
testcase_09 AC 123 ms
68,576 KB
testcase_10 AC 122 ms
68,704 KB
testcase_11 AC 125 ms
68,832 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 AC 122 ms
68,704 KB
testcase_21 AC 120 ms
69,088 KB
testcase_22 AC 122 ms
68,960 KB
testcase_23 AC 126 ms
69,336 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 AC 118 ms
68,448 KB
testcase_39 AC 119 ms
68,832 KB
testcase_40 AC 120 ms
68,704 KB
testcase_41 AC 121 ms
68,704 KB
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 AC 122 ms
68,960 KB
testcase_47 AC 122 ms
68,320 KB
testcase_48 AC 120 ms
69,088 KB
testcase_49 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x):
    a = 0
    while x % 2 == 0:
        a += 1
        x //= 2
    b = 0
    while x % 5 == 0:
        b += 1
        x //= 5

    return a, b


def ask(a, b, fin=False):
    x = 1
    for _ in range(a):
        x *= 2
    for _ in range(b):
        x *= 5
    print(x, flush=True)
    if fin:
        exit()
    return f(int(input()))


x1, x2 = map(int, input().split())
a1, b1 = f(x1)
a2, b2 = f(x2)

while a1 != 7 and b1 != 9:
    if abs(a1 - a2) + abs(b1 - b2) <= 1:
        ask(a2, b2, True)
        exit()

    if a1 < 7:
        a1 += 1
    elif a1 > 7:
        a1 -= 1
    else:
        b1 += 1
    a2, b2 = ask(a1, b1)

    if a1 == a2 and b1 == b2:
        exit()

d = abs(a1 - a2) + abs(b1 - b2)
if d == 1:
    ask(a2, b2, True)
    exit()

if d % 2 == 0:
    a1 = 9
    a2, b2 = ask(a1, b1)

while 1:
    if abs(a1 - a2) + abs(b1 - b2) <= 1:
        ask(a2, b2, True)
        exit()

    da = abs(a1 - a2)
    db = abs(b1 - b2)

    if da > db:
        if a1 > a2:
            a1 -= 1
        else:
            a1 += 1
    else:
        if b1 > b2:
            b1 -= 1
        else:
            b1 += 1

    a2, b2 = ask(a1, b1)
    if a1 == a2 and b1 == b2:
        exit()
0