結果

問題 No.2781 A%B問題
ユーザー アンス・クマールアンス・クマール
提出日時 2024-06-20 19:47:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 399 bytes
コンパイル時間 1,656 ms
コンパイル使用メモリ 167,284 KB
実行使用メモリ 13,752 KB
最終ジャッジ日時 2024-06-20 19:47:30
合計ジャッジ時間 6,086 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define ll long long

void solve() {
    int a, b;
    cin >> a >> b;

    if(abs(a) != a && a%b != 0) cout << abs(b) - abs(a%b) << endl;
    else cout << abs(a%b) << endl;
}
 
int main(){
    ios::sync_with_stdio(0);
    cin.tie(NULL);
    cout.tie(NULL);
    int t;
    cin >> t;
    while(t--){
        solve();
    }
    // solve();
    return 0;
}
0