結果

問題 No.2088 数当てゲーム
ユーザー Akijin_007
提出日時 2022-09-30 21:42:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 175 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 52,352 KB
最終ジャッジ日時 2024-12-22 22:54:30
合計ジャッジ時間 4,076 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4 WA * 17
権限があれば一括ダウンロードができます

ソースコード

diff #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))


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

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

0