結果
| 問題 |
No.2259 Gas Station
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-04-07 21:35:58 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 19 ms / 2,000 ms |
| コード長 | 296 bytes |
| コンパイル時間 | 2,067 ms |
| コンパイル使用メモリ | 192,736 KB |
| 最終ジャッジ日時 | 2025-02-12 00:42:37 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i,n) for (int i=0;i<(int)(n);i++)
int main(){
ll l,r,c;
cin>>l>>r>>c;
c%=1000;
ll ans=1e18;
for(ll i=l;i<=r;i++){
ans=min(ans,((i*c+999)/1000)*1000-i*c);
if(ans==0) break;
}
cout<<ans<<endl;
}