QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#167064 | #7102. Live Love | ucup-team1716 | WA | 2ms | 3716kb | C++20 | 328b | 2023-09-07 00:57:30 | 2023-09-07 00:57:30 |
Judging History
answer
#include <bits/stdc++.h>
#define ll long long
#define pb push_back
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
int t = 1;
cin >> t;
while(t-->0)
{
int n, m;
cout << m << " " << n/(n-m+1) << "\n";
}
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 2ms
memory: 3716kb
input:
5 5 4 100 50 252 52 3 0 10 10
output:
0 0 0 0 0 0 0 0 0 0
result:
wrong answer 1st lines differ - expected: '4 2', found: '0 0'