結果
| 問題 | No.915 Plus Or Multiple Operation |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-01-30 09:33:29 |
| 言語 | Python3 (3.14.3 + numpy 2.4.2 + scipy 1.17.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 269 bytes |
| 記録 | |
| コンパイル時間 | 453 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 31,552 KB |
| 最終ジャッジ日時 | 2026-03-04 10:17:46 |
| 合計ジャッジ時間 | 11,151 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 WA * 2 TLE * 2 |
ソースコード
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())))