QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#114864#75. Build the Perfect HouseYunanWA 0ms3380kbC++14344b2023-06-23 19:36:502023-06-23 19:36:51

Judging History

你现在查看的是最新测评结果

  • [2023-08-10 23:21:45]
  • System Update: QOJ starts to keep a history of the judgings of all the submissions.
  • [2023-06-23 19:36:51]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3380kb
  • [2023-06-23 19:36:50]
  • 提交

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'