/ SeriousOJ /

Record Detail

Wrong Answer


  
# Status Time Cost Memory Cost
#1 Accepted 1ms 320.0 KiB
#2 Wrong Answer 2ms 532.0 KiB
#3 Wrong Answer 2ms 328.0 KiB

Code

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

void solve() {
    int n, k;
    cin >> n >> k;

    // Compute best Y (target value)
    int bestTarget = k / (n + 1);

    // Compute X = K - N * bestTarget
    int X = k - n * bestTarget;

    // Final answer is X * bestTarget
    int ans = X * bestTarget;

    cout << ans << endl;
}

signed main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);

    int test;
    cin >> test;
    while (test--) {
        solve();
    }

    return 0;
}

Information

Submit By
Type
Submission
Problem
P1092 Bitwise AND
Contest
Brain Booster #5
Language
C++17 (G++ 13.2.0)
Submit At
2024-09-05 17:19:16
Judged At
2024-11-11 02:58:25
Judged By
Score
1
Total Time
2ms
Peak Memory
532.0 KiB