結果

問題 No.1926 Sequence of Remainders
ユーザー okkuukenkenokkuukenken
提出日時 2022-06-04 05:53:28
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 261 ms / 2,000 ms
コード長 128 bytes
コンパイル時間 751 ms
コンパイル使用メモリ 77,436 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-21 03:35:52
合計ジャッジ時間 14,062 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 174 ms
5,376 KB
testcase_02 AC 180 ms
5,376 KB
testcase_03 AC 176 ms
5,376 KB
testcase_04 AC 177 ms
5,376 KB
testcase_05 AC 175 ms
5,376 KB
testcase_06 AC 236 ms
5,376 KB
testcase_07 AC 236 ms
5,376 KB
testcase_08 AC 240 ms
5,376 KB
testcase_09 AC 236 ms
5,376 KB
testcase_10 AC 241 ms
5,376 KB
testcase_11 AC 235 ms
5,376 KB
testcase_12 AC 241 ms
5,376 KB
testcase_13 AC 243 ms
5,376 KB
testcase_14 AC 236 ms
5,376 KB
testcase_15 AC 239 ms
5,376 KB
testcase_16 AC 241 ms
5,376 KB
testcase_17 AC 235 ms
5,376 KB
testcase_18 AC 241 ms
5,376 KB
testcase_19 AC 239 ms
5,376 KB
testcase_20 AC 245 ms
5,376 KB
testcase_21 AC 239 ms
5,376 KB
testcase_22 AC 255 ms
5,376 KB
testcase_23 AC 244 ms
5,376 KB
testcase_24 AC 247 ms
5,376 KB
testcase_25 AC 242 ms
5,376 KB
testcase_26 AC 249 ms
5,376 KB
testcase_27 AC 246 ms
5,376 KB
testcase_28 AC 250 ms
5,376 KB
testcase_29 AC 251 ms
5,376 KB
testcase_30 AC 245 ms
5,376 KB
testcase_31 AC 248 ms
5,376 KB
testcase_32 AC 250 ms
5,376 KB
testcase_33 AC 249 ms
5,376 KB
testcase_34 AC 247 ms
5,376 KB
testcase_35 AC 261 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
using namespace std;
int main(){
	int t,n,m,k;
	cin>>t;
	while(cin>>n>>m>>k)
		cout<<(k%m<m-n?k%m:0)<<endl;
}
0