結果
問題 | No.2099 [Cherry Alpha B] Time Machine |
ユーザー | みここ |
提出日時 | 2022-12-12 03:46:09 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 345 ms / 2,000 ms |
コード長 | 496 bytes |
コンパイル時間 | 672 ms |
コンパイル使用メモリ | 68,616 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-06 03:58:02 |
合計ジャッジ時間 | 15,008 ms |
ジャッジサーバーID (参考情報) |
judge3 / 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;}