結果

問題 No.1047 Zero (Novice)
ユーザー RK PythonRK Python
提出日時 2020-06-07 15:57:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 222 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 21,928 KB
最終ジャッジ日時 2024-12-23 17:35:23
合計ジャッジ時間 10,502 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
15,744 KB
testcase_01 AC 29 ms
21,928 KB
testcase_02 AC 30 ms
15,744 KB
testcase_03 AC 27 ms
17,444 KB
testcase_04 TLE -
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 27 ms
10,496 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 29 ms
10,368 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 28 ms
10,496 KB
testcase_11 AC 27 ms
10,496 KB
testcase_12 AC 28 ms
10,624 KB
testcase_13 TLE -
testcase_14 AC 28 ms
10,368 KB
testcase_15 AC 29 ms
10,496 KB
testcase_16 TLE -
testcase_17 AC 27 ms
10,496 KB
testcase_18 AC 26 ms
10,368 KB
testcase_19 AC 28 ms
15,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B = [int(i) for i in input().split()]
if B == 0:
    print(1)
else:
    if A >= 0:
        print(-1)
    else:
        c = 1
        N = B
        while N != 0:
            N = A*N + B
            c += 1
        print(c)
0