結果

問題 No.2259 Gas Station
ユーザー LevyxLevyx
提出日時 2023-04-07 21:38:21
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 1,657 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 1,792 ms
コンパイル使用メモリ 166,716 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-02 19:11:10
合計ジャッジ時間 10,453 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint = long long;
#define rep(i, s, n) for (int i = (s); i < (int)(n); i++)
#define Yes cout << "Yes" << endl
#define No cout << "No" << endl
int main() {
    lint l,r,c,b,ans=999;
    cin >> l >> r >> c;
    rep(i,l,r+1) {
        if((i*c)%1000==0) {
            ans=0;
        } else {
            b = 1000 - ((i*c)%1000);
            ans=min(ans,b);
        }
    }
    cout << ans << endl;
}
0