結果

問題 No.810 割った余りの個数
ユーザー silopy
提出日時 2019-08-11 19:20:45
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 501 ms
コンパイル使用メモリ 65,472 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-13 23:03:07
合計ジャッジ時間 1,465 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
using lint=int64_t;

int main()
{
	lint L,R,M;

	cin >> L >> R >> M;
	
	if(M<=R-L+1)
		cout << M << endl;
	else
	{
		lint rL=L%M;
		lint rR=R%M;
		if(rR-rL>=0)
			cout << rR-rL+1 << endl;
		else
			cout << (M-rL+1)+rR << endl;
	}
	return 0;
}
0