結果
| 問題 |
No.2099 [Cherry Alpha B] Time Machine
|
| コンテスト | |
| ユーザー |
pengin_2000
|
| 提出日時 | 2022-10-14 22:55:41 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 111 ms / 2,000 ms |
| コード長 | 420 bytes |
| コンパイル時間 | 483 ms |
| コンパイル使用メモリ | 29,440 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-26 16:43:39 |
| 合計ジャッジ時間 | 9,412 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 72 |
ソースコード
#include<stdio.h>
int main()
{
long long int t;
scanf("%lld", &t);
long long int x, a;
scanf("%lld %lld", &x, &a);
long long int y, b;
scanf("%lld %lld", &y, &b);
long long int i, ans = 0;
long long int v, c;
ans = 1e18;
for (i = 0; i <= 1e7; i++)
{
if (t < -i * b)
continue;
c = i * y;
v = i * b + t;
c += v / a * x;
c += v % a;
if (ans > c)
ans = c;
}
printf("%lld\n", ans);
return 0;
}
pengin_2000