QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#165470 | #7102. Live Love | ikunsome | WA | 1ms | 3720kb | C++23 | 161b | 2023-09-05 18:30:10 | 2023-09-05 18:30:10 |
Judging History
answer
#include <iostream>
using namespace std;
int main() {
int t;cin>>t;
while(t--){
int n,m;cin>>n>>m;
cout<<(m,n/(n-m+1));
}
}
詳細信息
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3720kb
input:
5 5 4 100 50 252 52 3 0 10 10
output:
211010
result:
wrong answer 1st lines differ - expected: '4 2', found: '211010'