結果
問題 | No.915 Plus Or Multiple Operation |
ユーザー | Bwambocos |
提出日時 | 2019-10-25 21:54:36 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 548 bytes |
コンパイル時間 | 2,283 ms |
コンパイル使用メモリ | 203,988 KB |
実行使用メモリ | 17,096 KB |
最終ジャッジ日時 | 2024-11-07 03:27:35 |
合計ジャッジ時間 | 8,433 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
#include "bits/stdc++.h" #define in std::cin #define out std::cout #define rep(i,N) for(LL i=0;i<N;++i) typedef long long int LL; int main() { LL Q; in >> Q; std::vector<LL>A(Q), B(Q), C(Q); rep(i, Q) in >> A[i] >> B[i] >> C[i]; rep(i, Q) { LL ans = 0, t = A[i]; while (t > 0) { if (t % C[i] == 0) { t /= C[i]; ++ans; } else { if (t <= C[i] * 2) { ans += (t + C[i] - 1) / C[i]; t = 0; } else { t -= t % C[i]; ++ans; } } } out << ans * B[i] << std::endl; } }