結果
問題 | No.2259 Gas Station |
ユーザー |
![]() |
提出日時 | 2023-04-07 21:22:18 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 32 ms / 2,000 ms |
コード長 | 251 bytes |
コンパイル時間 | 2,141 ms |
コンパイル使用メモリ | 192,424 KB |
最終ジャッジ日時 | 2025-02-12 00:09:21 |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
#include <bits/stdc++.h>using namespace std;#define int long longsigned 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;}