結果
| 問題 |
No.2099 [Cherry Alpha B] Time Machine
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-12-12 03:46:09 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 342 ms / 2,000 ms |
| コード長 | 496 bytes |
| コンパイル時間 | 625 ms |
| コンパイル使用メモリ | 67,396 KB |
| 最終ジャッジ日時 | 2025-02-09 09:56:50 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 72 |
ソースコード
#include <iostream>
using namespace std;
typedef long long ll;
const ll INF = 1000000000000000000;
int main()
{
ll t, x, a, y, b;
cin >> t >> x >> a >> y >> b;
ll ans = INF;
for(ll i = 0; i <= abs(t) + a + b; i++)
{
ll d = t + b * i;
if(d < 0)
{
continue;
}
ll j = d / a;
if(j >= 1000000000)
{
continue;
}
ans = min(ans, i * y + j * x + d % a);
}
cout << ans << endl;
}