QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#624356#8708. PortalDimash#0 0ms3688kbC++23459b2024-10-09 15:39:162024-10-09 15:39:17

Judging History

This is the latest submission verdict.

  • [2024-10-09 15:39:17]
  • Judged
  • Verdict: 0
  • Time: 0ms
  • Memory: 3688kb
  • [2024-10-09 15:39:16]
  • Submitted

answer

#include <bits/stdc++.h>
    
using namespace std;
    
typedef long long ll;
const int  N = 3e5 + 12, MOD = (int)1e9 + 7;

int n, x[N], y[N];
void test() {
    cout << 4 << '\n';
    return;
    cin >> n;
    for(int i = 1; i <= n; i++) {
        cin >> x[i] >> y[i];
    }

}

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(0); 

    int t = 1; 
    // cin >> t;

    while(t--) 
        test();

    return 0;
}

详细

Subtask #1:

score: 0
Wrong Answer

Test #1:

score: 0
Wrong Answer
time: 0ms
memory: 3648kb

input:

1
1 -1

output:

4

result:

wrong answer 1st lines differ - expected: '-1', found: '4'

Subtask #2:

score: 0
Skipped

Dependency #1:

0%

Subtask #3:

score: 0
Wrong Answer

Test #40:

score: 0
Wrong Answer
time: 0ms
memory: 3688kb

input:

99840
-359536 735499
-710626 400619
-468266 -282389
-192706 43659
204034 -543669
-100576 -749013
-118006 -283125
-341276 405771
560934 835595
-923936 506603
239724 956299
-680746 -737237
286204 982795
-847576 -282389
-949666 986475
996684 -429589
672984 -133717
140954 696491
-879116 -442837
985064 7...

output:

4

result:

wrong answer 1st lines differ - expected: '610880', found: '4'

Subtask #4:

score: 0
Wrong Answer

Test #59:

score: 0
Wrong Answer
time: 0ms
memory: 3656kb

input:

5
0 0
1 0
-1 0
0 1
0 -1

output:

4

result:

wrong answer 1st lines differ - expected: '1', found: '4'

Subtask #5:

score: 0
Skipped

Dependency #2:

0%

Subtask #6:

score: 0
Skipped

Dependency #1:

0%