結果

問題 No.1047 Zero (Novice)
ユーザー mlihua09mlihua09
提出日時 2020-08-29 15:11:37
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 266 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 111,840 KB
最終ジャッジ日時 2024-11-14 13:14:12
合計ジャッジ時間 4,978 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,200 KB
testcase_01 AC 37 ms
52,236 KB
testcase_02 AC 39 ms
52,500 KB
testcase_03 AC 38 ms
53,200 KB
testcase_04 AC 38 ms
52,112 KB
testcase_05 AC 37 ms
53,080 KB
testcase_06 AC 38 ms
52,756 KB
testcase_07 TLE -
testcase_08 AC 38 ms
52,072 KB
testcase_09 AC 39 ms
53,008 KB
testcase_10 AC 37 ms
52,076 KB
testcase_11 AC 37 ms
52,560 KB
testcase_12 AC 38 ms
53,768 KB
testcase_13 AC 38 ms
52,208 KB
testcase_14 AC 38 ms
53,036 KB
testcase_15 AC 39 ms
52,208 KB
testcase_16 AC 38 ms
52,204 KB
testcase_17 AC 38 ms
52,356 KB
testcase_18 AC 38 ms
52,616 KB
testcase_19 AC 38 ms
111,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


A, B = map(int, input().split())

x = B

i = 1

if A == 0 and B != 0:
    
    print(-1)
    exit()

while x != 0:
    
    if x % A == 0:
        
        x //= A
        x += B
        
    else:
        
        print(-1)
        exit()
    i += 1
    
print(i)
0