QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#841291 | #8708. Portal | zhassyn# | 0 | 13ms | 5204kb | C++20 | 685b | 2025-01-03 16:26:14 | 2025-01-03 16:26:14 |
Judging History
answer
#include <bits/stdc++.h>
#define pb push_back
#define pf push_front
using namespace std;
#define F first
#define S second
typedef long long ll;
#define pii pair <int, int>
#define pll pair <ll, ll>
typedef long double ld;
const ll N = 1e5 + 100, M = 4096 + 10, len = 315, inf = 1e18;
const ll mod = 1e9 + 7;
ll um(ll a, ll b){
return (1LL * a * b) % mod;
}
ll subr(ll a, ll b){
return ((1LL * a - b) % mod + mod) % mod;
}
pll a[N];
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
ll n;
cin >> n;
for(ll i = 0; i < n; i++){
cin >> a[i].F >> a[i].S;
}
if(n == 2){
cout << -1;
return 0;
}
return 0;
}
詳細信息
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 0
Wrong Answer
time: 0ms
memory: 3640kb
input:
1 1 -1
output:
result:
wrong answer 1st lines differ - expected: '-1', found: ''
Subtask #2:
score: 0
Skipped
Dependency #1:
0%
Subtask #3:
score: 0
Wrong Answer
Test #40:
score: 0
Wrong Answer
time: 13ms
memory: 5204kb
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:
result:
wrong answer 1st lines differ - expected: '610880', found: ''
Subtask #4:
score: 0
Wrong Answer
Test #59:
score: 0
Wrong Answer
time: 0ms
memory: 3700kb
input:
5 0 0 1 0 -1 0 0 1 0 -1
output:
result:
wrong answer 1st lines differ - expected: '1', found: ''
Subtask #5:
score: 0
Skipped
Dependency #2:
0%
Subtask #6:
score: 0
Skipped
Dependency #1:
0%