結果

問題 No.2781 A%B問題
ユーザー PralaPrala
提出日時 2024-08-11 19:38:45
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 218 bytes
コンパイル時間 848 ms
コンパイル使用メモリ 78,284 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-11 19:38:47
合計ジャッジ時間 1,404 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 1 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 1 ms
6,944 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

void solve(){
	using namespace std;
	int A, B;
	cin >> A >> B;
	int r = 1e8;
	for (int i = -200; i < 201; i++){
		r = min(r, abs(A-B*i));
	}
	cout << r <<endl;
}

int main(){
	solve();
	return 0;
}
0