結果
問題 |
No.915 Plus Or Multiple Operation
|
ユーザー |
|
提出日時 | 2022-01-30 09:33:29 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 269 bytes |
コンパイル時間 | 219 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 21,376 KB |
最終ジャッジ日時 | 2024-06-11 08:09:25 |
合計ジャッジ時間 | 6,685 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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())))