Wrong Answer
Code
#include <bits/stdc++.h>
using namespace std;
#define int long long int
void solve()
{
int n, k; cin>>n>>k;
int a=k/(n+1);
int ans=a*(k-(n*a));
cout<<a<<endl;
cout<<ans<<endl;
}
signed main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int test = 1;
cin >> test;
for (int tc = 0; tc < test; ++tc)
{
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:25:33
- Judged At
- 2024-10-03 13:04:15
- Judged By
- Score
- 0
- Total Time
- 268ms
- Peak Memory
- 3.164 MiB