結果
問題 | No.2259 Gas Station |
ユーザー | keisuke6 |
提出日時 | 2023-04-07 21:22:18 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 251 bytes |
コンパイル時間 | 2,166 ms |
コンパイル使用メモリ | 200,056 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-02 18:53:20 |
合計ジャッジ時間 | 2,971 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
#include <bits/stdc++.h> using namespace std; #define int long long signed main(){ int l,r,x; cin>>l>>r>>x; r = min(r,l+10000); int ans = 1e18; for(int i=l;i<=r;i++) ans = min(ans,1000-(x*i)%1000-1000*((x*i)%1000 == 0)); cout<<ans<<endl; }