結果

問題 No.1926 Sequence of Remainders
ユーザー SotaSota
提出日時 2022-05-06 21:54:11
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 338 bytes
コンパイル時間 686 ms
コンパイル使用メモリ 69,320 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-05 23:06:40
合計ジャッジ時間 10,920 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 35
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>		//cin, cout
#include <vector>		//vector
#include <algorithm>	//sort,min,max,count

using namespace std;

int main() {

	int T, N, M, K;
	cin >> T;

	for (int i = 0; i < T; i++) {
		cin >> N >> M >> K;

		int a = K % M;
		if (M - N > a) {
			cout << a << endl;
		}
		else {
			cout << 0 << endl;
		}

	}

	return 0;

}
0