結果
| 問題 | No.915 Plus Or Multiple Operation |
| コンテスト | |
| ユーザー |
tpyneriver
|
| 提出日時 | 2019-10-12 20:59:13 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 24 ms / 2,000 ms |
| コード長 | 391 bytes |
| 記録 | |
| コンパイル時間 | 1,695 ms |
| コンパイル使用メモリ | 84,900 KB |
| 実行使用メモリ | 54,272 KB |
| 最終ジャッジ日時 | 2026-05-07 11:26:25 |
| 合計ジャッジ時間 | 1,290 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
def f(x, c):
if c == 1:
return -1
if x == 0:
return 0
elif x < c:
return 1
elif x < 2*c - 1:
return 2
elif x%c != 0:
return 1 + f(x - x%c, c)
else:
return 1 + f(x//c, c)
Q = int(input())
for _ in range(Q):
a, b, c = map(int, input().split())
res = f(a, c)
if res > 0:
res *= b
print(res)
tpyneriver