結果

問題 No.2088 数当てゲーム
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2022-09-30 21:30:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 147 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 53,248 KB
最終ジャッジ日時 2024-06-02 04:58:43
合計ジャッジ時間 1,758 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,012 KB
testcase_01 AC 33 ms
52,208 KB
testcase_02 AC 33 ms
52,332 KB
testcase_03 AC 32 ms
52,560 KB
testcase_04 AC 34 ms
52,564 KB
testcase_05 AC 32 ms
52,252 KB
testcase_06 AC 32 ms
53,248 KB
testcase_07 AC 33 ms
53,124 KB
testcase_08 AC 32 ms
52,144 KB
testcase_09 AC 34 ms
53,056 KB
testcase_10 AC 34 ms
52,396 KB
testcase_11 AC 34 ms
52,348 KB
testcase_12 AC 33 ms
52,432 KB
testcase_13 AC 33 ms
51,752 KB
testcase_14 AC 33 ms
53,004 KB
testcase_15 AC 33 ms
52,316 KB
testcase_16 AC 34 ms
52,572 KB
testcase_17 AC 35 ms
51,820 KB
testcase_18 AC 35 ms
52,084 KB
testcase_19 AC 35 ms
51,884 KB
testcase_20 AC 34 ms
52,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

x*A+B = x

(A-1)x = -B

"""

import sys

A = int(input())
B = int(input())

if A == 1:
    print (B)
else:
    x = -B // (A-1)
    print (x)
0