結果

問題 No.2099 [Cherry Alpha B] Time Machine
ユーザー みここ
提出日時 2022-12-12 03:44:51
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 428 bytes
コンパイル時間 666 ms
コンパイル使用メモリ 66,304 KB
最終ジャッジ日時 2025-02-09 09:56:16
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 62 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0