結果
| 問題 | No.2099 [Cherry Alpha B] Time Machine |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-12-12 03:44:51 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 428 bytes |
| 記録 | |
| コンパイル時間 | 471 ms |
| コンパイル使用メモリ | 79,872 KB |
| 実行使用メモリ | 6,528 KB |
| 最終ジャッジ日時 | 2026-06-28 21:30:00 |
| 合計ジャッジ時間 | 7,030 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 62 WA * 10 |
ソースコード
#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(int i = 0; i <= abs(t) + a + b; i++)
{
ll d = t + b * i;
if(d < 0)
{
continue;
}
int j = d / a;
ans = min(ans, i * y + j * x + d % a);
}
cout << ans << endl;
}