QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#594161 | #6749. Target | LianYan | WA | 0ms | 3568kb | C++20 | 928b | 2024-09-27 19:48:42 | 2024-09-27 19:48:43 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define up(i, a, b) for (int i = (a); i <= (b); i++)
#define dn(i, a, b) for (int i = (a); i >= (b); i--)
typedef long long ll;
inline int read()
{
int x = 0, f = 1;
char ch = getchar();
while (ch < 48 || ch > 57)
{
if (ch == '-')
f = -1;
ch = getchar();
}
while (ch >= 48 && ch <= 57)
{
x = (x << 1) + (x << 3) + (ch ^ 48);
ch = getchar();
}
return x * f;
}
inline void write(int x)
{
if (x < 0)
{
putchar('-');
x = -x;
}
if (x > 9)
write(x / 10);
putchar(x % 10 + '0');
}
void solve()
{
cout << "11111111111111111111111112222222222222222222222211" << endl;
}
signed main()
{
ios::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
solve();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3556kb
input:
0.5 0.25
output:
11111111111111111111111112222222222222222222222211
result:
ok ok
Test #2:
score: -100
Wrong Answer
time: 0ms
memory: 3568kb
input:
1 0.75
output:
11111111111111111111111112222222222222222222222211
result:
wrong answer wa