結果

問題 No.2259 Gas Station
ユーザー ripityripity
提出日時 2023-04-07 21:22:33
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 6,721 ms
コンパイル使用メモリ 299,208 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-15 03:41:50
合計ジャッジ時間 7,474 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);
	long long L, R, C;
	cin >> L >> R >> C;
	long long ans = 1000;
	for( long long x = L; x <= min(R, L+1000LL); x++ ) {
		ans = min(ans, (1000-x*C%1000)%1000);
	}
	cout << ans << endl;
}
0