結果
| 問題 | No.915 Plus Or Multiple Operation |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-01-30 09:33:29 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 269 bytes |
| 記録 | |
| コンパイル時間 | 304 ms |
| コンパイル使用メモリ | 21,416 KB |
| 実行使用メモリ | 22,140 KB |
| 最終ジャッジ日時 | 2026-07-25 09:15:54 |
| 合計ジャッジ時間 | 7,148 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | -- * 3 |
| other | TLE * 1 -- * 9 |
ソースコード
def solve(A, B, C):
res = 0
while A >= 2 * C:
A, mod = divmod(A, C)
res += B
if mod:
res += B
res += B if A < C else 2 * B
return res
Q = int(input())
for _ in range(Q):
print(solve(*map(int, input().split())))