結果

問題 No.1152 10億ゲーム
ユーザー 👑 rin204rin204
提出日時 2024-09-14 18:20:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 1,196 bytes
コンパイル時間 1,009 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 70,832 KB
平均クエリ数 24.90
最終ジャッジ日時 2024-09-14 18:20:18
合計ジャッジ時間 10,396 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
69,360 KB
testcase_01 AC 122 ms
69,008 KB
testcase_02 AC 123 ms
69,700 KB
testcase_03 AC 125 ms
68,976 KB
testcase_04 AC 121 ms
69,352 KB
testcase_05 AC 122 ms
69,628 KB
testcase_06 AC 130 ms
69,768 KB
testcase_07 AC 130 ms
70,192 KB
testcase_08 AC 129 ms
69,012 KB
testcase_09 AC 129 ms
68,800 KB
testcase_10 AC 129 ms
69,060 KB
testcase_11 AC 122 ms
69,340 KB
testcase_12 AC 123 ms
70,760 KB
testcase_13 AC 122 ms
69,500 KB
testcase_14 AC 125 ms
69,968 KB
testcase_15 AC 120 ms
69,672 KB
testcase_16 AC 119 ms
69,912 KB
testcase_17 AC 124 ms
69,912 KB
testcase_18 AC 123 ms
70,232 KB
testcase_19 AC 123 ms
69,360 KB
testcase_20 AC 124 ms
69,772 KB
testcase_21 AC 123 ms
69,248 KB
testcase_22 AC 122 ms
69,296 KB
testcase_23 AC 124 ms
70,132 KB
testcase_24 AC 123 ms
70,112 KB
testcase_25 AC 135 ms
69,088 KB
testcase_26 AC 124 ms
70,328 KB
testcase_27 AC 124 ms
70,484 KB
testcase_28 AC 122 ms
69,752 KB
testcase_29 AC 122 ms
69,808 KB
testcase_30 AC 121 ms
70,200 KB
testcase_31 AC 122 ms
70,832 KB
testcase_32 AC 122 ms
69,352 KB
testcase_33 AC 124 ms
70,548 KB
testcase_34 AC 123 ms
69,176 KB
testcase_35 AC 121 ms
70,408 KB
testcase_36 AC 122 ms
69,644 KB
testcase_37 AC 125 ms
70,516 KB
testcase_38 AC 121 ms
68,812 KB
testcase_39 AC 124 ms
70,340 KB
testcase_40 AC 123 ms
69,908 KB
testcase_41 AC 124 ms
70,012 KB
testcase_42 AC 125 ms
69,548 KB
testcase_43 AC 142 ms
69,696 KB
testcase_44 AC 124 ms
70,608 KB
testcase_45 AC 124 ms
69,096 KB
testcase_46 AC 122 ms
69,240 KB
testcase_47 AC 122 ms
69,968 KB
testcase_48 AC 122 ms
69,192 KB
testcase_49 AC 122 ms
69,956 KB
権限があれば一括ダウンロードができます

ソースコード

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 or 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