QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#131833 | #5128. Dividing DNA | PetroTarnavskyi# | WA | 1ms | 3520kb | C++17 | 770b | 2023-07-28 15:07:22 | 2023-07-28 15:07:25 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define SZ(a) (int)a.size()
#define ALL(a) a.begin(), a.end()
#define FOR(i, a, b) for (int i = (a); i<(b); ++i)
#define RFOR(i, b, a) for (int i = (b)-1; i>=(a); --i)
#define MP make_pair
#define PB push_back
#define F first
#define S second
#define FILL(a, b) memset(a, b, sizeof(a))
typedef long long LL;
typedef pair<int, int> PII;
typedef vector<int> VI;
int main()
{
//ios::sync_with_stdio(false);
//cin.tie(0);
int n;
cin >> n;
int ans = 0;
int prev = 0;
FOR(i, 0, n){
cout << "? " << prev + 1 << " " << i + 1 << endl;
string s;
cin >> s;
if(s == "absent"){
prev = i + 1;
ans++;
}
}
cout << "! " << ans << endl;
return 0;
}
详细
Test #1:
score: 0
Wrong Answer
time: 1ms
memory: 3520kb
input:
1
output:
? 1 1
result:
wrong answer l must be non-empty