QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#287157 | #7854. 这不是一道数据结构题 | chenxinyang2006 | 100 ✓ | 124ms | 76168kb | C++14 | 7.7kb | 2023-12-19 20:20:31 | 2023-12-19 20:20:32 |
Judging History
answer
#include <bits/stdc++.h>
#define rep(i,j,k) for(int i=(j);i<=(k);i++)
#define per(i,j,k) for(int i=(j);i>=(k);i--)
#define uint unsigned int
#define ll long long
#define ull unsigned long long
#define db double
#define ldb long double
#define pii pair<int,int>
#define pll pair<ll,ll>
#define mkp make_pair
#define eb emplace_back
#define SZ(S) (int)S.size()
//#define mod 998244353
#define mod 1000000007
#define inf 0x3f3f3f3f
#define linf 0x3f3f3f3f3f3f3f3f
using namespace std;
template <class T>
void chkmax(T &x,T y){
if(x < y) x = y;
}
template <class T>
void chkmin(T &x,T y){
if(x > y) x = y;
}
inline int popcnt(int x){
return __builtin_popcount(x);
}
inline int ctz(int x){
return __builtin_ctz(x);
}
template <int P>
class mod_int
{
using Z = mod_int;
private:
static int mo(int x) { return x < 0 ? x + P : x; }
public:
int x;
int val() const { return x; }
mod_int() : x(0) {}
template <class T>
mod_int(const T &x_) : x(x_ >= 0 && x_ < P ? static_cast<int>(x_) : mo(static_cast<int>(x_ % P))) {}
bool operator==(const Z &rhs) const { return x == rhs.x; }
bool operator!=(const Z &rhs) const { return x != rhs.x; }
Z operator-() const { return Z(x ? P - x : 0); }
Z pow(long long k) const
{
Z res = 1, t = *this;
while (k)
{
if (k & 1)
res *= t;
if (k >>= 1)
t *= t;
}
return res;
}
Z &operator++()
{
x < P - 1 ? ++x : x = 0;
return *this;
}
Z &operator--()
{
x ? --x : x = P - 1;
return *this;
}
Z operator++(int)
{
Z ret = x;
x < P - 1 ? ++x : x = 0;
return ret;
}
Z operator--(int)
{
Z ret = x;
x ? --x : x = P - 1;
return ret;
}
Z inv() const { return pow(P - 2); }
Z &operator+=(const Z &rhs)
{
(x += rhs.x) >= P && (x -= P);
return *this;
}
Z &operator-=(const Z &rhs)
{
(x -= rhs.x) < 0 && (x += P);
return *this;
}
Z operator-()
{
return -x;
}
Z &operator*=(const Z &rhs)
{
x = 1ULL * x * rhs.x % P;
return *this;
}
Z &operator/=(const Z &rhs) { return *this *= rhs.inv(); }
#define setO(T, o) \
friend T operator o(const Z &lhs, const Z &rhs) \
{ \
Z res = lhs; \
return res o## = rhs; \
}
setO(Z, +) setO(Z, -) setO(Z, *) setO(Z, /)
#undef setO
friend istream& operator>>(istream& is, mod_int& x)
{
long long tmp;
is >> tmp;
x = tmp;
return is;
}
friend ostream& operator<<(ostream& os, const mod_int& x)
{
os << x.val();
return os;
}
};
using Z = mod_int<mod>;
Z power(Z p,ll k){
Z ans = 1;
while(k){
if(k % 2 == 1) ans *= p;
p *= p;
k /= 2;
}
return ans;
}
int n,m;
int _u[200005],_v[200005];
Z fact[200005];
int cnt;
int head[200005];
struct eg{
int to,nxt;
}edge[800005];
void make(int u,int v){
edge[++cnt].to = v;
edge[cnt].nxt = head[u];
head[u] = cnt;
}
int dfn[200005],low[200005],N;
vector <int> sta,scc[200005],idx[400005];
void tarjan(int u){
dfn[u] = low[u] = ++cnt;
sta.eb(u);
for(int i = head[u];i;i = edge[i].nxt){
int v = edge[i].to;
if(!dfn[v]){
tarjan(v);
chkmin(low[u],low[v]);
if(low[v] == dfn[u]){
++N;
scc[N].eb(u);
while(1){
int p = sta.back();
sta.pop_back();
scc[N].eb(p);
if(p == v) break;
}
}
}else{
chkmin(low[u],dfn[v]);
}
}
}
vector <int> son[400005];
int anc[400005];
void dfs(int u,int f){
anc[u] = f;
for(int v:son[u]) if(v != f) dfs(v,u);
}
queue <int> Q;
int deg[200005],qwq[200005];
map <int,int> G[200005];
void add(int u,int v){
// printf("add %d %d\n",u,v);
qwq[u]++;qwq[v]++;
make(u,v);
make(v,u);
}
void test(int u){
deg[u]--;
if(deg[u] == 2) Q.push(u);
}
int vis[200005];
void dfs2(int u){
vis[u] = 1;
for(int i = head[u];i;i = edge[i].nxt){
int v = edge[i].to;
if(!vis[v]) dfs2(v);
}
}
int rk[200005];
int main(){
// freopen("graph13.in","r",stdin);
scanf("%d%d",&n,&m);
fact[0] = 1;
rep(i,1,n) fact[i] = fact[i - 1] * i;
rep(i,1,m){
scanf("%d%d",&_u[i],&_v[i]);
make(_u[i],_v[i]);make(_v[i],_u[i]);
}
cnt = 0;
tarjan(1);
rep(c,1,N){
for(int u:scc[c]){
son[n + c].eb(u);
son[u].eb(n + c);
}
}
dfs(1,0);
rep(i,1,m){
if(anc[_u[i]] == anc[_v[i]]){
idx[anc[_u[i]]].eb(i);
continue;
}
if(anc[anc[_u[i]]] == _v[i]) idx[anc[_u[i]]].eb(i);
else if(anc[anc[_v[i]]] == _u[i]) idx[anc[_v[i]]].eb(i);
else assert(0);
}
// printf("qwq\n");
Z ans = n;
cnt = 0;
memset(head,0,sizeof(head));
rep(c,1,N){
/* printf("vcc %d\n",c);
for(int id:idx[n + c]) printf("%d %d\n",_u[id],_v[id]);
printf("\n");
for(int u:scc[c]) printf("%d ",u);
printf("\n");*/
if(SZ(scc[c]) == 2){
add(_u[idx[n + c].back()],_v[idx[n + c].back()]);
qwq[_u[idx[n + c].back()]] = qwq[_v[idx[n + c].back()]] = 0;
continue;
}
ans *= 2;
for(int id:idx[n + c]){
G[_u[id]][_v[id]] = 1;
G[_v[id]][_u[id]] = 1;
deg[_u[id]]++;deg[_v[id]]++;
}
for(int u:scc[c]) if(deg[u] == 2) Q.push(u);
rep(k,1,SZ(scc[c]) - 2){
if(Q.empty()){
printf("0\n");
return 0;
}
int u = Q.front();
Q.pop();
int p = -1,q = -1;
for(pii I:G[u]){
if(!I.second) continue;
if(p == -1) p = I.first;
else if(q == -1) q = I.first;
else assert(0);
if(I.second == 1) add(u,I.first);
}
// printf("erase %d p=%d q=%d\n",u,p,q);
if(q == -1){
printf("0\n");
return 0;
}
G[p][u] = G[q][u] = 0;
G[u].clear();
if(G[p].find(q) != G[p].end() && G[p][q]){
test(p);
test(q);
}
if(k + 2 < SZ(scc[c])){
G[p][q] = G[q][p] = 2;
}else{
chkmax(G[p][q],1);
chkmax(G[q][p],1);
}
}
if(SZ(Q) < 2){
printf("0\n");
return 0;
}
assert(SZ(Q) == 2);
int p = Q.front();Q.pop();
int q = Q.front();Q.pop();
if(G[p][q] == 1) add(p,q);
G[p].clear();G[q].clear();
for(int u:scc[c]){
if(qwq[u] != 2){
printf("0\n");
return 0;
}
qwq[u] = deg[u] = 0;
}
}
dfs2(1);
rep(u,1,n){
if(!vis[u]){
printf("0\n");
return 0;
}
}
rep(c,1,N){
for(int u:scc[c]) rk[u]++;
}
rep(u,1,n) ans *= fact[rk[u]];
printf("%d\n",ans.val());
return 0;
}
詳細信息
Subtask #1:
score: 5
Accepted
Test #1:
score: 5
Accepted
time: 0ms
memory: 44996kb
input:
7 9 1 2 2 3 3 4 1 5 2 5 2 6 5 6 5 7 6 7
output:
56
result:
ok single line: '56'
Test #2:
score: 0
Accepted
time: 5ms
memory: 44888kb
input:
10 14 10 9 4 1 7 10 3 5 9 6 1 7 8 5 2 7 8 6 4 10 9 3 8 7 4 5 7 3
output:
0
result:
ok single line: '0'
Test #3:
score: 0
Accepted
time: 3ms
memory: 44932kb
input:
10 14 7 9 5 1 2 1 8 3 6 5 4 2 10 6 8 1 7 10 7 1 2 8 3 4 6 3 9 1
output:
0
result:
ok single line: '0'
Test #4:
score: 0
Accepted
time: 6ms
memory: 44848kb
input:
10 15 4 9 6 8 6 1 3 2 3 10 2 7 3 6 1 9 9 5 1 8 3 8 10 6 5 8 3 7 7 10
output:
40
result:
ok single line: '40'
Subtask #2:
score: 5
Accepted
Test #5:
score: 5
Accepted
time: 119ms
memory: 76168kb
input:
200000 199999 76849 117660 190775 11517 36929 136177 161792 186900 165326 184615 74197 120051 7891 83240 121896 35204 83314 195652 104144 158348 71191 182187 122824 50031 108950 179173 165120 190230 156949 181392 171984 82834 96017 30143 58114 108979 38698 90371 185399 171751 139913 99465 71566 1324...
output:
437454115
result:
ok single line: '437454115'
Test #6:
score: 0
Accepted
time: 105ms
memory: 75416kb
input:
200000 199999 6574 23146 34257 69209 155380 164090 110026 127221 193115 99889 5635 174278 55712 77121 26697 49953 22754 96882 63538 126940 194879 165261 41026 41295 30210 92107 74413 48768 21400 93816 132836 161798 106855 181482 139713 172322 188984 22749 138035 187484 119125 94408 106547 197156 855...
output:
113291706
result:
ok single line: '113291706'
Test #7:
score: 0
Accepted
time: 100ms
memory: 75360kb
input:
200000 199999 31632 184606 168095 2953 125939 52574 192991 195231 89249 63587 67762 15189 127486 26911 55580 120635 164243 67832 132583 173571 144167 123204 145229 101807 103885 170616 134195 61189 192909 104601 164109 127893 96486 109669 155596 168629 144450 40523 111830 166912 21452 144116 168225 ...
output:
695768886
result:
ok single line: '695768886'
Test #8:
score: 0
Accepted
time: 123ms
memory: 75640kb
input:
200000 199999 163361 68930 19490 33356 160159 49369 191573 191277 25950 191040 87000 96084 87600 7514 36433 91932 124379 117605 192879 188658 132884 148743 167108 124881 145773 56391 131418 128073 157008 76084 141192 147983 85318 133420 94748 189411 50453 78717 71148 12192 164264 189793 112210 18103...
output:
733222740
result:
ok single line: '733222740'
Subtask #3:
score: 5
Accepted
Dependency #2:
100%
Accepted
Test #9:
score: 5
Accepted
time: 105ms
memory: 75916kb
input:
200000 200000 12724 99480 110070 33803 133108 189774 90549 132698 44107 190886 80834 45073 196688 3535 65325 152337 190962 142430 1881 60227 26322 185955 145062 99829 183113 179795 10631 100971 60798 37230 149752 51457 119906 123989 118777 44821 140764 181969 101534 197139 108651 135722 56961 189607...
output:
845696751
result:
ok single line: '845696751'
Test #10:
score: 0
Accepted
time: 120ms
memory: 75636kb
input:
200000 200000 101889 44867 88241 190435 89839 146284 5148 128828 32602 156348 31195 126576 146414 147950 70778 100220 13083 26015 6144 91822 141590 111136 44593 74957 138472 185562 75610 171998 48845 71030 175023 164685 128735 168341 15747 73835 169514 55205 119817 136636 190706 86265 148598 41994 1...
output:
654417965
result:
ok single line: '654417965'
Test #11:
score: 0
Accepted
time: 105ms
memory: 75760kb
input:
200000 200000 153577 8632 61036 84864 7655 90000 148729 89342 137385 7553 10222 50803 46720 102913 47837 105292 110223 81670 91157 108026 153903 139607 13230 84612 18282 113252 45158 195698 100923 170852 105927 41217 65631 826 105522 53451 173143 188641 176689 86349 150960 193904 15934 34208 72591 1...
output:
30336343
result:
ok single line: '30336343'
Test #12:
score: 0
Accepted
time: 118ms
memory: 76048kb
input:
200000 200000 139569 146207 179144 129709 26078 199032 175722 54209 174513 62650 157339 171357 119600 146013 50746 126175 183634 29260 30876 146213 53398 117000 115599 60981 90560 139790 2685 32865 53251 13733 60624 85594 41186 142244 157755 21032 167206 188574 161858 198651 157000 150869 113701 751...
output:
184856401
result:
ok single line: '184856401'
Subtask #4:
score: 20
Accepted
Test #13:
score: 20
Accepted
time: 7ms
memory: 46848kb
input:
300 305 289 290 34 35 111 140 90 93 233 240 110 271 116 117 12 21 141 142 53 57 21 85 99 102 34 42 183 184 240 264 252 253 223 224 159 160 126 131 112 113 28 33 50 52 204 208 185 188 46 50 262 264 197 199 111 136 259 261 290 294 49 50 263 264 210 212 291 294 203 208 184 185 120 121 111 131 210 240 2...
output:
482487615
result:
ok single line: '482487615'
Test #14:
score: 0
Accepted
time: 4ms
memory: 45108kb
input:
300 320 233 237 208 217 90 92 277 278 226 246 79 80 37 40 1 9 190 191 213 214 94 96 231 232 162 163 9 10 226 227 172 173 168 169 131 135 158 159 133 134 59 60 61 102 52 57 161 180 172 174 84 86 207 208 54 55 9 16 118 119 122 123 166 170 212 215 38 39 264 266 180 196 65 69 287 288 22 23 24 28 201 202...
output:
821115099
result:
ok single line: '821115099'
Test #15:
score: 0
Accepted
time: 3ms
memory: 45460kb
input:
300 350 104 106 257 259 216 298 250 251 147 148 217 218 220 267 284 285 249 250 232 233 145 209 257 258 283 287 232 238 255 256 206 207 189 190 23 25 48 51 75 115 187 193 14 18 90 94 81 82 45 48 90 91 42 44 51 54 154 155 174 175 60 62 82 85 99 100 160 161 216 217 200 202 226 231 255 257 252 253 36 3...
output:
427803536
result:
ok single line: '427803536'
Test #16:
score: 0
Accepted
time: 0ms
memory: 45068kb
input:
300 400 59 60 221 225 12 29 77 79 192 197 85 87 79 80 121 122 197 199 66 67 229 231 23 24 35 46 191 201 233 235 211 212 7 8 209 210 175 176 60 61 152 156 211 213 205 206 285 286 73 74 43 44 138 141 290 291 254 259 115 116 214 216 105 106 81 84 25 28 151 165 135 141 206 214 77 78 185 186 200 201 3 12...
output:
887964015
result:
ok single line: '887964015'
Test #17:
score: 0
Accepted
time: 3ms
memory: 46860kb
input:
300 500 161 164 45 46 199 201 87 88 44 50 216 218 65 68 209 225 96 97 111 113 293 294 262 263 91 92 76 77 31 38 235 267 292 294 109 111 65 67 186 188 18 19 2 3 9 10 255 256 7 8 61 63 261 267 250 252 91 97 1 8 183 229 267 268 79 80 274 275 140 141 133 277 166 168 254 255 240 245 46 47 59 63 250 251 1...
output:
217536838
result:
ok single line: '217536838'
Subtask #5:
score: 20
Accepted
Test #18:
score: 20
Accepted
time: 4ms
memory: 45088kb
input:
300 500 279 256 263 65 40 62 236 256 8 193 164 235 242 256 27 219 72 244 49 253 289 261 162 113 196 199 121 222 293 245 33 186 206 279 111 139 97 15 203 24 245 157 184 59 188 90 239 283 42 5 107 108 267 51 200 126 286 282 293 59 42 261 276 216 152 6 92 220 225 69 88 166 179 109 158 144 133 18 147 18...
output:
159215763
result:
ok single line: '159215763'
Test #19:
score: 0
Accepted
time: 7ms
memory: 46872kb
input:
300 400 266 230 93 211 207 79 137 173 3 72 277 182 143 250 297 136 285 26 11 98 188 257 271 65 298 259 58 109 193 227 180 195 137 56 104 285 39 9 166 33 41 188 72 243 25 80 81 268 190 158 76 90 191 266 1 145 119 138 241 7 179 103 275 108 144 235 164 248 146 64 69 285 288 200 90 51 5 163 116 255 280 ...
output:
910719722
result:
ok single line: '910719722'
Test #20:
score: 0
Accepted
time: 8ms
memory: 46844kb
input:
300 360 103 272 29 124 224 18 197 163 237 39 40 192 267 288 137 181 42 80 300 148 293 181 150 256 99 274 169 254 97 107 239 154 121 282 254 273 181 296 26 162 297 202 225 24 273 280 59 98 23 18 76 96 107 205 142 196 1 141 196 240 71 292 190 188 263 197 194 227 37 186 286 17 228 139 64 18 243 152 166...
output:
392453747
result:
ok single line: '392453747'
Test #21:
score: 0
Accepted
time: 0ms
memory: 45220kb
input:
300 330 40 16 254 156 114 293 90 109 236 82 44 153 243 5 277 201 198 229 286 149 250 253 84 130 291 180 2 262 110 153 93 225 12 57 30 92 170 247 86 105 110 87 256 167 27 230 200 99 84 194 113 207 176 245 55 47 16 23 74 42 222 240 27 253 109 254 226 15 118 31 101 33 260 154 223 78 173 63 209 248 293 ...
output:
109903798
result:
ok single line: '109903798'
Test #22:
score: 0
Accepted
time: 3ms
memory: 44924kb
input:
300 310 92 178 136 186 203 85 8 166 150 245 119 97 113 131 296 163 157 47 169 191 108 238 215 244 22 1 87 300 238 118 230 123 214 192 230 140 251 142 209 54 244 166 173 269 276 284 43 38 183 121 65 236 73 76 241 145 99 230 88 57 150 35 157 244 83 201 262 169 97 43 273 64 294 157 119 201 207 65 28 21...
output:
419876890
result:
ok single line: '419876890'
Subtask #6:
score: 20
Accepted
Test #23:
score: 20
Accepted
time: 2ms
memory: 45112kb
input:
300 597 181 11 16 186 144 42 80 274 72 186 238 172 7 268 225 118 198 84 274 214 170 27 181 44 171 74 270 266 20 6 296 108 45 25 32 198 99 86 129 110 281 273 67 47 259 107 277 265 264 145 215 218 264 164 156 281 100 23 284 125 109 280 92 203 108 74 227 171 213 81 262 239 206 111 5 23 90 121 77 274 23...
output:
600
result:
ok single line: '600'
Test #24:
score: 0
Accepted
time: 4ms
memory: 45336kb
input:
300 597 145 168 81 149 192 248 114 243 113 25 201 259 190 156 225 40 127 199 225 33 229 4 298 36 243 81 31 163 192 294 258 31 8 299 210 28 87 143 180 205 270 281 257 174 173 187 203 128 179 292 34 4 292 236 288 248 78 255 7 239 191 124 227 194 113 187 270 93 164 238 256 37 121 88 279 133 11 99 189 1...
output:
600
result:
ok single line: '600'
Test #25:
score: 0
Accepted
time: 5ms
memory: 45164kb
input:
300 597 137 70 124 146 24 239 38 218 186 180 244 153 274 153 274 298 256 126 36 174 172 157 60 274 270 87 207 14 114 280 221 51 165 106 166 25 29 62 210 122 104 157 218 173 134 154 65 120 131 46 45 262 138 253 48 187 118 114 101 184 47 244 200 60 296 267 34 128 129 165 53 246 102 123 153 238 238 249...
output:
600
result:
ok single line: '600'
Test #26:
score: 0
Accepted
time: 3ms
memory: 45236kb
input:
300 597 279 221 253 68 255 267 293 234 88 82 272 133 157 107 129 78 221 160 45 205 8 197 295 127 212 288 232 224 274 23 101 65 4 272 112 300 51 225 221 236 213 236 166 182 87 57 236 254 295 259 28 128 124 39 157 177 133 49 64 45 291 94 161 111 98 144 244 92 135 64 39 44 171 244 241 238 268 296 208 2...
output:
0
result:
ok single line: '0'
Test #27:
score: 0
Accepted
time: 4ms
memory: 45096kb
input:
300 597 240 186 292 198 221 201 168 95 237 175 71 272 55 257 181 281 47 115 188 83 251 142 297 77 271 181 68 75 267 209 195 92 22 54 134 300 253 251 238 13 179 199 246 144 61 199 65 271 113 46 180 204 144 209 84 184 124 250 238 212 70 30 118 125 175 39 88 54 253 159 208 243 115 262 30 128 214 22 187...
output:
0
result:
ok single line: '0'
Test #28:
score: 0
Accepted
time: 4ms
memory: 45252kb
input:
300 597 166 131 24 224 206 54 208 109 243 157 191 268 162 109 260 285 238 144 193 283 57 12 145 76 186 192 24 72 96 243 80 137 144 127 59 87 50 106 179 170 93 261 249 66 160 210 177 239 183 287 226 249 115 195 252 153 289 284 93 144 280 227 289 170 17 210 14 217 154 54 149 177 138 88 294 230 211 93 ...
output:
0
result:
ok single line: '0'
Subtask #7:
score: 10
Accepted
Dependency #4:
100%
Accepted
Dependency #5:
100%
Accepted
Dependency #6:
100%
Accepted
Test #29:
score: 10
Accepted
time: 0ms
memory: 46892kb
input:
300 500 7 123 207 27 201 68 247 242 161 144 296 61 91 289 220 48 167 48 11 200 144 19 96 249 202 7 24 152 149 198 51 253 145 167 231 218 151 66 61 7 285 139 16 153 256 202 20 36 244 161 17 215 58 124 24 88 187 217 189 15 189 279 216 182 34 213 65 287 192 262 60 224 175 112 42 206 148 226 146 43 226 ...
output:
415588302
result:
ok single line: '415588302'
Test #30:
score: 0
Accepted
time: 3ms
memory: 45324kb
input:
300 400 220 267 181 218 108 226 109 23 243 167 252 9 274 24 195 130 4 134 200 101 258 166 130 266 220 170 261 60 139 160 255 191 150 242 93 229 69 202 194 14 191 258 102 298 172 61 24 96 207 200 262 181 63 162 259 292 21 242 56 217 156 132 6 64 62 248 85 77 211 60 142 171 224 94 26 109 71 76 112 6 1...
output:
703133826
result:
ok single line: '703133826'
Test #31:
score: 0
Accepted
time: 9ms
memory: 46936kb
input:
300 350 46 212 238 202 32 141 270 121 22 268 17 171 13 54 140 292 222 163 197 109 260 37 14 92 176 133 205 168 112 173 222 295 190 178 66 147 46 73 282 225 299 173 252 295 161 178 140 18 298 146 76 90 171 226 256 252 270 126 8 138 131 30 138 201 85 101 79 244 220 96 119 94 138 148 3 221 255 241 283 ...
output:
768971311
result:
ok single line: '768971311'
Test #32:
score: 0
Accepted
time: 0ms
memory: 45012kb
input:
300 351 285 205 155 58 266 214 95 158 223 222 255 221 244 226 191 205 247 1 43 140 87 99 224 57 63 248 55 94 242 57 128 257 59 286 187 79 67 47 57 111 162 160 169 27 184 163 51 143 149 187 31 165 177 47 221 46 38 193 129 55 187 265 266 156 147 173 247 132 59 169 56 138 149 29 274 144 293 106 283 16 ...
output:
0
result:
ok single line: '0'
Test #33:
score: 0
Accepted
time: 0ms
memory: 45032kb
input:
300 330 190 3 268 235 248 286 242 82 51 89 240 11 192 290 126 244 100 298 297 87 211 102 42 46 88 111 125 232 239 56 266 40 35 186 280 40 108 282 12 84 43 153 231 164 296 194 219 280 189 258 168 292 90 288 272 250 212 146 40 1 155 123 154 36 12 198 236 149 207 154 18 118 65 40 181 177 215 75 300 167...
output:
0
result:
ok single line: '0'
Subtask #8:
score: 15
Accepted
Dependency #1:
100%
Accepted
Dependency #3:
100%
Accepted
Dependency #7:
100%
Accepted
Test #34:
score: 15
Accepted
time: 112ms
memory: 72840kb
input:
190000 199999 91963 87389 157680 30967 41922 166429 34039 89736 55483 110152 54143 133603 164608 39137 166852 65841 50828 37228 99816 46397 148746 21510 154158 113125 121388 93035 70405 171411 162998 126826 97977 26629 127430 162552 22968 142143 134807 114404 49301 177819 112230 104008 57346 50361 8...
output:
240163316
result:
ok single line: '240163316'
Test #35:
score: 0
Accepted
time: 110ms
memory: 70304kb
input:
180000 199999 55225 154171 38579 37694 126002 131595 125737 12644 164192 48203 90107 77853 89966 172492 134010 35958 154532 129467 120426 177555 66784 135752 158582 104046 148919 43216 171087 157147 134811 55364 92641 3885 77904 83151 165094 18380 82410 112588 21214 171203 83767 137307 157887 134900...
output:
283069966
result:
ok single line: '283069966'
Test #36:
score: 0
Accepted
time: 109ms
memory: 66120kb
input:
160000 199999 77695 29606 94115 144576 19536 115400 3987 49514 20287 38172 11126 2909 144450 123184 28904 37828 126773 124094 106964 4024 58089 79718 126000 111550 75355 54067 94536 79337 9391 135883 82721 74258 154027 96683 101897 98872 113409 149139 33683 61346 149475 58410 104188 22170 11401 8492...
output:
136701285
result:
ok single line: '136701285'
Test #37:
score: 0
Accepted
time: 118ms
memory: 65148kb
input:
150000 199999 122031 112885 139136 47691 142766 71423 98872 48453 81436 127384 23209 58797 133726 31294 32349 141847 75014 91715 30866 133388 69335 30656 135212 62702 138927 64334 76004 30168 74377 137609 67195 59100 48360 146588 5899 122095 108760 31336 109885 29968 30487 140300 32137 5231 41211 56...
output:
115881028
result:
ok single line: '115881028'
Test #38:
score: 0
Accepted
time: 108ms
memory: 71280kb
input:
190000 200000 42812 160803 163181 103680 153507 150190 64044 54545 13634 150057 66430 177511 30975 121773 80957 135998 133128 151172 74144 165337 49069 158283 114027 52126 32938 87391 82402 73043 5268 110047 152614 110639 100226 97271 174209 82657 79840 146327 123582 91654 177823 89206 87194 84046 5...
output:
0
result:
ok single line: '0'
Test #39:
score: 0
Accepted
time: 108ms
memory: 68936kb
input:
180000 199999 51739 143015 48903 175854 35046 164262 149308 89747 5955 37352 139639 169770 144302 75463 81850 153572 127681 109942 91885 28510 41122 126904 99809 158209 98722 109366 30194 1416 156472 112930 164969 6732 71771 61846 85161 68319 53107 104660 86812 50657 28940 121526 79942 151091 9878 9...
output:
0
result:
ok single line: '0'
Test #40:
score: 0
Accepted
time: 124ms
memory: 70060kb
input:
120000 199997 109941 84177 52613 26517 35906 114934 10012 16150 25307 14690 34324 77195 88397 57230 39670 93769 13885 91613 4960 36872 112065 18114 66040 1988 91367 59891 76639 50273 100636 88013 60426 15162 117697 36586 39670 35246 80152 80959 105265 110538 29759 65988 33570 88335 20410 26443 33188...
output:
133397883
result:
ok single line: '133397883'
Test #41:
score: 0
Accepted
time: 113ms
memory: 70396kb
input:
120000 199998 91739 109970 3330 116565 80543 62387 7386 79011 64680 10582 79034 79454 88363 32636 61658 42428 24797 119231 10896 4338 57239 22491 88331 29386 40818 112474 103050 82101 13443 76704 43024 8263 55770 29878 97774 30709 119919 99228 22102 29750 79848 63249 96783 14445 32112 14938 75979 15...
output:
0
result:
ok single line: '0'