QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#114864 | #75. Build the Perfect House | Yunan | WA | 0ms | 3380kb | C++14 | 344b | 2023-06-23 19:36:50 | 2023-06-23 19:36:51 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
void Task() {
ios_base :: sync_with_stdio(false); cin.tie(0); cout.tie(0);
if (fopen("test.inp", "r")) {
freopen("test.inp", "r", stdin);
freopen("test.out", "w", stdout);
}
}
void Solve() {
cout << 9;
}
int main() {
Task();
Solve();
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3380kb
input:
1 0 1
output:
9
result:
wrong answer 1st lines differ - expected: '8.0000', found: '9'