結果

問題 No.2259 Gas Station
ユーザー Levyx
提出日時 2023-04-07 21:34:41
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 446 bytes
コンパイル時間 1,374 ms
コンパイル使用メモリ 166,224 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-10-02 19:05:43
合計ジャッジ時間 9,613 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 11 WA * 10
権限があれば一括ダウンロードができます

ソースコード

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() {
    int 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