QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#150539 | #6660. 택시 여행 | penguinman | 0 | 1431ms | 41896kb | C++17 | 6.3kb | 2023-08-25 20:15:19 | 2023-08-25 20:15:20 |
Judging History
answer
#include <bits/stdc++.h>
using std::cin;
using std::cout;
using std::endl;
using std::vector;
using std::string;
using ll = long long;
using vi = vector<ll>;
using vii = vector<vi>;
using pii = std::pair<ll,ll>;
#define rep(i,j,k) for(ll i=ll(j); i<ll(k); i++)
#define REP(i,j,k) for(ll i=ll(j); i<=ll(k); i++)
#define per(i,j,k) for(ll i=ll(j); i>=ll(k); i--)
#define ln "\n"
#define pb emplace_back
#define mp std::make_pair
#define mtp std::make_tuple
#define all(a) a.begin(),a.end()
constexpr ll inf = (1ll<<60);
std::vector<long long> travel(std::vector<long long> A,
std::vector<int> B, std::vector<int> U, std::vector<int> V, std::vector<int> W)
{
ll N = A.size();
vii edge(N), weight(N), d_edge(N);
rep(i,0,N-1){
edge[U[i]].pb(V[i]);
edge[V[i]].pb(U[i]);
weight[U[i]].pb(W[i]);
weight[V[i]].pb(W[i]);
}
vi dist(N, -1), par(N), hld_dist(N);
{
std::queue<ll> que;
vector<bool> visited(N);
dist[0] = 0;
que.push(0);
while(!que.empty()){
ll now = que.front(); que.pop();
rep(i,0,edge[now].size()){
ll next = edge[now][i];
if(dist[next] != -1) continue;
dist[next] = dist[now]+weight[now][i];
que.push(next);
par[next] = now;
d_edge[now].pb(next);
hld_dist[next] = hld_dist[now]+1;
}
}
}
vi c_par(N,-1);
vector<bool> dead(N);
vi subtree(N);
std::function<void(ll)> calc_subtree = [&](ll now){
subtree[now] = 1;
for(auto next: d_edge[now]){
if(dead[next]) continue;
calc_subtree(next);
subtree[now] += subtree[next];
}
};
// hld
vi hld_par(N);
std::function<void(ll)> heavy_light_decomposition = [&](ll now){
rep(i,1,d_edge[now].size()){
if(subtree[edge[now][0]] < subtree[edge[now][i]]) std::swap(edge[now][i], edge[now][0]);
}
rep(i,0,d_edge[now].size()){
ll next = d_edge[now][i];
if(i) hld_par[next] = next;
else hld_par[next] = hld_par[now];
heavy_light_decomposition(next);
}
};
auto LCA = [&](ll l, ll r){
while(true){
if(hld_dist[l] < hld_dist[r]) std::swap(l,r);
if(hld_par[l] == hld_par[r]){
return r;
}
if(l == hld_par[l]) l = par[l];
else l = hld_par[l];
}
};
auto distance = [&](ll l, ll r){
return dist[l]+dist[r]-2*dist[LCA(l,r)];
};
calc_subtree(0);
heavy_light_decomposition(0);
// centroid tree
std::function<ll(ll, ll)> find_centroid = [&](ll root, ll now){
ll max = subtree[root]-subtree[now];
for(auto next: d_edge[now]){
if(dead[next]) continue;
ll c = find_centroid(root, next);
if(c != -1) return c;
max = std::max(max, subtree[next]);
}
if(max*2 <= subtree[root]) return now;
return ll(-1);
};
std::function<void(ll,ll)> centroid_coloring = [&](ll centroid, ll now){
if(now != centroid) c_par[now] = centroid;
for(auto next: d_edge[now]){
if(dead[next]) continue;
centroid_coloring(centroid, next);
}
};
std::function<void(ll)> dfs_centroid_decomposition = [&](ll root){
if(dead[root]) return;
calc_subtree(root);
if(subtree[root] == 1) return;
ll c = find_centroid(root,root);
centroid_coloring(c, root);
dead[c] = true;
for(auto next: d_edge[c]){
dfs_centroid_decomposition(next);
}
dfs_centroid_decomposition(root);
};
dfs_centroid_decomposition(0);
vector<pii> data(N);
rep(i,0,N) data[i] = mp(B[i], i);
sort(all(data));
reverse(all(data));
vector<vector<pii>> lines(N);
// m について判定
// is_need : true → m は必要
auto is_need = [&](pii l, pii m, pii r){
return true;
return ((r.second-m.second)*(m.first-l.first) >= (m.second-l.second)*(r.first-m.first));
};
auto add_line = [&](ll idx, pii l){
if(!lines[idx].empty() && lines[idx].back().first == l.first){
ll n = lines[idx].size();
if(lines[idx][n-1].second <= l.second) return;
lines[idx].pop_back();
}
while(lines[idx].size() > 1){
ll n = lines[idx].size();
if(!is_need(lines[idx][n-2], lines[idx][n-1], l)) lines[idx].pop_back();
else break;
}
lines[idx].pb(l);
};
auto value = [&](pii f, ll x){
return f.first*x+f.second;
};
auto calc = [&](ll idx, ll x){
if(lines[idx].empty()) return inf;
{
ll min = inf;
for(auto el: lines[idx]){
min = std::min(min, value(el, x));
//cout << value(el, x) << " ";
}
//cout << endl;
return min;
}
ll left = 0, right = lines[idx].size();
while(left+1 < right){
ll mid = (left+right)/2;
if(value(lines[idx][mid-1],x) > value(lines[idx][mid], x)) left = mid;
else right = mid;
}
return value(lines[idx][left], x);
};
vi ans(N, inf);
ans[0] = 0;
for(auto el: data){
ll now = el.second;
ll n_v = now;
while(true){
ans[now] = std::min(ans[now], calc(n_v, distance(now, n_v)));
if(c_par[n_v] == -1) break;
n_v = c_par[n_v];
}
n_v = now;
while(true){
add_line(n_v, mp(B[now], A[now]+ans[now]+distance(now, n_v)*B[now]));
if(c_par[n_v] == -1) break;
n_v = c_par[n_v];
}
}
rep(now,0,N){
ll n_v = now;
while(true){
ans[now] = std::min(ans[now], calc(n_v, distance(now, n_v)));
if(c_par[n_v] == -1) break;
n_v = c_par[n_v];
}
}
{
reverse(all(ans));
ans.pop_back();
reverse(all(ans));
}
return ans;
}
详细
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 7
Accepted
time: 1ms
memory: 3672kb
input:
2 684124582850 713748627948 74361 256955 0 1 661088
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 733283747618 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 3 lines
Test #2:
score: 0
Accepted
time: 1ms
memory: 3604kb
input:
3 251115773325 363097865287 358609487841 826785 213106 914768 0 1 851938 2 0 231697
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 955485332655 442679377470 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 4 lines
Test #3:
score: 0
Accepted
time: 1ms
memory: 3688kb
input:
3 489998888627 318672977903 70353752652 258347 458793 258657 2 1 156120 0 2 524840
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 665922861747 625589728107 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 4 lines
Test #4:
score: 0
Accepted
time: 1ms
memory: 3680kb
input:
3 737471938521 315388610250 818943569900 726908 666797 564862 0 1 460302 0 2 785280
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1072069144737 1308298252761 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 4 lines
Test #5:
score: 0
Accepted
time: 1ms
memory: 3672kb
input:
4 201836820267 208957719162 992553400562 566050337171 243994 65303 590123 936951 1 0 259719 0 3 860376 3 2 513584
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 265206697953 537074816507 411763402011 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 5 lines
Test #6:
score: 0
Accepted
time: 1ms
memory: 3728kb
input:
4 440719935569 160237864481 704297665373 767778991240 451998 371509 46564 828427 1 0 861960 1 3 830699 2 3 185693
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 830324131649 1289731282865 1205798418251 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 5 lines
Test #7:
score: 0
Accepted
time: 1ms
memory: 3648kb
input:
5 148262899914 9382086008 622202345986 443806901161 213829280326 178155 503016 333953 572340 461148 0 3 453941 3 2 84057 4 0 171136 3 1 598794
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 335812903839 244109933604 229134758769 178751633994 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 6 lines
Test #8:
score: 0
Accepted
time: 0ms
memory: 3668kb
input:
5 391440982512 969252165920 333946610796 649830522527 902812044171 522045 996458 225429 545971 667483 0 1 701500 0 4 514779 2 1 435377 3 0 919439
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 757655550012 984941935977 871429515267 660178785567 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 6 lines
Test #9:
score: 0
Accepted
time: 0ms
memory: 3668kb
input:
17 315015458526 65513576283 829720084774 654640079244 561177336848 463903843105 496216524512 837433489064 92734412345 807145138979 250511786518 915329126804 373916658654 78276842047 121976569238 432447179015 519384539551 696133 642473 231377 987220 589587 337763 790202 785083 249580 108311 73808 892...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 430639669161 417840567823 403532946274 499079112962 498466070651 495984520010 499402357184 501387707132 498265325456 501233852966 474661031682 494612046266 411867746683 497598865088 499819422548 496976423075 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 18 lines
Test #10:
score: 0
Accepted
time: 1ms
memory: 3692kb
input:
20 764145449871 794297102632 450082553736 427358261877 587251097098 98567356955 15910789509 321286084089 25839798358 969219436118 975479420690 937908953492 410498404545 180209954689 302999489632 849828117651 171771046425 800442975277 295169929534 146003957886 828538 724406 733109 79844 665172 652593...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1384833390877 871900130923 1446847771547 1245326093057 924349900475 1046486123707 1063981383357 864751505059 1159443240947 824076089025 1448542597977 1486181926466 1488465960086 1424780088987 1478403270966 1303312410681 1485431478966 1135576549657 1412080059777...
result:
ok 21 lines
Test #11:
score: 0
Accepted
time: 1ms
memory: 3736kb
input:
20 286866076510 666296858783 319893290745 436172872006 579306725182 388780143357 429085643976 163864091991 334402956892 573150791451 971047548996 924353133556 82495144441 364862686518 76783079529 74022380610 978776791995 17833817791 637808249822 150520055702 705613 111460 694926 702547 748042 671482...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1345583882860 995125125260 815198043938 1295987956432 1034264067144 888082221934 1247814963646 1225117709350 631676569994 1289347270738 404306893004 1347095564962 373415155864 1441975557454 1167058795516 1091947224281 1373264198836 795244013911 1127743556434 se...
result:
ok 21 lines
Test #12:
score: 0
Accepted
time: 0ms
memory: 3664kb
input:
20 161996998737 15089127085 28063038428 574601167323 736141386895 762192247356 788118187801 956063872362 580983462657 839554694910 471536078792 781164874294 363054673222 809510755913 153755418459 78171544930 969593469579 864779185396 408120998971 610129629325 933618 563940 506188 824442 64614 396381...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1870873819056 1340292002469 2180029603234 1667979150565 2084831816447 1131232525437 1898452835615 1742994070672 2139665843266 1042857179175 2148449164384 1856727805178 2077059488718 1931794896836 1753987714167 1864830429393 1705470391803 1529058594761 197326523...
result:
ok 21 lines
Test #13:
score: 0
Accepted
time: 1ms
memory: 3652kb
input:
20 443174843835 295023765677 175861678382 805210665445 724299682774 889923334441 967560897715 857729286838 7238459275 901083586058 887820756720 681912091803 886476957360 821901344613 222491154905 602669810322 953890359316 822857333786 674877086360 498973934687 505612 0 0 0 913180 49780 0 0 0 0 0 0 0...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 737522649521 561660971139 737522649521 737522649521 737522649521 737522649521 637744453675 737522649521 737522649521 737522649521 737522649521 737522649521 737522649521 737522649521 737522649521 737522649521 608216207263 737522649521 737522649521 secret: XBNN6R...
result:
ok 21 lines
Test #14:
score: 0
Accepted
time: 1ms
memory: 3680kb
input:
20 903941728884 384581140226 453502499061 225752209240 885300062423 504103937164 667092163600 460139456041 109118743857 207444296671 30492319139 345381827436 453966959387 438774451871 860637725773 554202343964 68114298125 781071441103 276250637196 155641220254 635683 100430 56855 0 0 0 0 0 0 142765 ...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1792855089572 1792855089572 1792855089572 1792855089572 1792855089572 1792855089572 1332715633531 1792855089572 1792855089572 1792855089572 1792855089572 1792855089572 1792855089572 1792855089572 1792855089572 1792855089572 1792855089572 1792855089572 179285508...
result:
ok 21 lines
Test #15:
score: 0
Accepted
time: 1ms
memory: 3788kb
input:
20 1000000000000 7 1000000000000 13 1000000000000 1000000000000 13 5 1000000000000 1 1000000000000 1000000000000 12 6 1000000000000 3 16 18 10 7 1000000 999999 1000000 999997 1000000 1000000 999994 999993 1000000 999991 1000000 1000000 999988 999987 1000000 999985 999984 999983 999982 999981 0 1 691...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1691757000000 2096049595714 2464529227234 2563764929539 3034748516584 3885772963503 4460798513342 4641761246599 4842046844590 5574182255313 6059278889404 6615402884243 7286465831403 7388442505695 8143381691358 8628101420456 8760501302040 9298906149020 934426333...
result:
ok 21 lines
Test #16:
score: 0
Accepted
time: 1ms
memory: 3640kb
input:
20 10 15 3 4 6 14 1000000000000 8 1000000000000 6 17 1000000000000 0 8 1000000000000 3 1 8 12 16 1000000 999999 999998 999997 999996 999995 1000000 999993 1000000 999991 999990 1000000 999988 999987 1000000 999985 999984 999983 999982 999981 0 1 197220 1 2 436230 2 3 822675 3 4 179287 4 5 533151 5 6...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 197220000010 633449563795 1456122918448 1635409380591 2168558247993 3065579762877 3926280459352 4087349331870 4728183845997 5358220175625 6266419093562 6968130076382 6985723865254 7299499786122 7859580504978 8093366998131 8775636081652 8926139523058 89838064850...
result:
ok 21 lines
Test #17:
score: 0
Accepted
time: 1ms
memory: 3604kb
input:
20 189782427733 285711699711 42839202308 323857876000 491102770223 681197470430 741563850085 770118022455 236662937828 460527070346 322304516149 407948067776 906756099567 581345187071 10531309090 96685590997 305996515557 289017611132 724839278560 441981934920 302755 557771 282205 475620 535221 82793...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 428459937493 646884046018 786290613318 982412880278 1253753718723 1534543706731 1557981114186 1577129287846 1819713270256 1848657061671 1871811459826 1890197068014 1919674253318 1934026950320 1960801118622 1977403784892 2009788771930 2014313798884 2035519586570...
result:
ok 21 lines
Test #18:
score: 0
Accepted
time: 1ms
memory: 3704kb
input:
19 20 4869939079 4869939079 1475687061 1475687061 236769056 120502350962 120502350962 4869939079 4869939079 236769056 696947 285 120502350962 12127756717 4061942829 35001226351 18770227218 120502350962 19715 22 1 6 22 1 1 1 3 14 1 1585 33 1009 14 3213 1 14 14 1 17 843518 0 13 773363 11 4 331406 2 0 ...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 6924732785 6923485436 6926848862 6925037261 6925431365 6924291344 6925858616 2051937220 6924502370 6924477974 6924043043 6924060575 6924508628 6925731629 6927300020 6924874217 6927263339 6925002536 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 20 lines
Test #19:
score: 0
Accepted
time: 1ms
memory: 3644kb
input:
20 22046 112845211637 272306351675 112845211637 2955509 7124 272306351675 64027867 595719023 2639297777 49993722591 49993722591 7124 2955509 373774 6 112845211637 360 112845211637 595719023 22772 17 4 1 17 39 8 240284 1 3 810 1 123 3 123 8 810 17 4 17 19 7 180627 18 3 992529 3 5 719911 10 9 467836 1...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 8894945676 8905143436 8886696844 8891169804 8892456132 8896006124 8888993412 8899307516 8886297524 8890040212 8897465804 8889166860 8896770972 8875081844 8871537806 8885825164 8879227404 8878756612 8887548396 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 21 lines
Test #20:
score: 0
Accepted
time: 0ms
memory: 3732kb
input:
20 7234739 60192 544422 1777110503 27883 243631 243631 15640571101 372138737 1 7234739 6282190524 1777110503 261389065797 15640571101 498987 243631 261389065797 261389065797 44277685886 15 10168 10168 7 52 1 164 15 3 15 7 1848 106 1 3 1848 1848 31 1 52 12 9 169781 9 14 222132 19 17 534510 18 1 48584...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 13842793 14083415 14476483 15368518 10078604 13682002 16069640 13326538 11194223 12711925 11907882 11364004 16235384 11416355 14442178 14732288 14055539 13356945 14590049 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 21 lines
Test #21:
score: 0
Accepted
time: 0ms
memory: 3676kb
input:
2 581307535501 194494107046 0 618074 1 0 748321
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 581307535501 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 3 lines
Test #22:
score: 0
Accepted
time: 0ms
memory: 3700kb
input:
3 317357548946 817037494642 528214670493 0 64902 893145 0 1 357981 1 2 51650
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 317357548946 317357548946 secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I
result:
ok 4 lines
Test #23:
score: 0
Accepted
time: 1ms
memory: 3672kb
input:
20 286137165829 558481591168 246286874330 911296048340 206943928979 833902301678 630443861497 193595327826 811311131640 719010619000 144293442797 118799128728 485766833311 668841562 465636799002 325620667444 364206372275 34760004486 956952950350 99526176863 0 377748 929183 766805 131265 816232 69905...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 286137165829 286137165829 286137165829 286137165829 286137165829 286137165829 286137165829 286137165829 286137165829 286137165829 286137165829 286137165829 286137165829 286137165829 286137165829 286137165829 286137165829 286137165829 286137165829 secret: XBNN6R...
result:
ok 21 lines
Test #24:
score: 0
Accepted
time: 0ms
memory: 3760kb
input:
20 82163788626 769878692374 634172669528 307103728653 356345803186 883842875633 942490621740 931464527725 777069481299 984496783620 917129001578 859052618330 862400963887 877474997210 948597241660 967356250775 666322723616 931008804068 850613474811 762733726068 448734 7600 458862 310771 195137 432 1...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1120791433067 933045570948 1120920076187 685236258054 236084935434 408886565292 704777277552 693121411902 777265767912 592010872086 422408266914 905999026566 838472188044 916287150984 541947414642 1120825893275 781034236044 874160451798 1104301312176 secret: XB...
result:
ok 21 lines
Test #25:
score: 0
Accepted
time: 1ms
memory: 3672kb
input:
20 454763477945 731519170596 100106306072 527835785299 586333054694 122404075974 179340225305 796659339924 910219062243 575223450053 674012377798 824682507041 676452173158 673138007110 915540143084 412056941211 782963066645 766909683853 365405785011 685446767739 101749 200151 272781 32539 475802 914...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 619559210815 561597994714 645888087302 662060683856 547938293213 587256040044 651552250634 636687535726 535045982670 571056378256 694788249706 550253489959 538847935804 488561341526 610054633227 597858794589 533363664704 496833331728 644141667466 secret: XBNN6R...
result:
ok 21 lines
Test #26:
score: -7
Wrong Answer
time: 1ms
memory: 3640kb
input:
19 1000000000000 1000000000000 9 7 1000000000000 1000000000000 1000000000000 0 4 1000000000000 0 1000000000000 9 1000000000000 1000000000000 1000000000000 16 14 18 1000000 1000000 999991 999967 1000000 1000000 1000000 999971 999964 1000000 999955 1000000 999985 1000000 1000000 1000000 999949 999965 ...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 2246706779574 1000003000000 2845384451109 4298736269153 1342142000000 2845374451259 2246714779502 4298746268863 5401504287953 4994820082137 3826519963823 1342147000000 4994812082369 2129591833618 5155115433437 5155125433147 3826522963736 2129596833573 secret: X...
result:
wrong answer 10th lines differ - expected: '5401500837595', found: '5401504287953'
Subtask #2:
score: 0
Time Limit Exceeded
Test #31:
score: 0
Time Limit Exceeded
input:
100000 746699125678 374834842799 250803643493 620187038832 454433387570 406226564003 897157438699 99473514061 734784419618 503968957100 363935477037 277126009840 52078020050 990757079812 847235285349 950784717285 271017141367 861087225700 996035427219 520682200664 282013988419 415183977876 882007771...
output:
Unauthorized output
result:
Subtask #3:
score: 0
Skipped
Dependency #1:
0%
Subtask #4:
score: 0
Wrong Answer
Test #69:
score: 17
Accepted
time: 114ms
memory: 37796kb
input:
100000 15175010 23519365 21177669 27079342 9089 16784452 29693960 23124925 17048604 10179491 12828214 24992902 8483134 2928073 23807522 7332137 17421520 28460746 1607282 13224363 11900728 11794692 11495061 4687109 23460275 7657982 27417256 16978162 7326803 23083826 24942987 16610314 12147303 2828271...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 16705757 ...
result:
ok 100001 lines
Test #70:
score: 0
Accepted
time: 184ms
memory: 39244kb
input:
100000 3100890 18869608 28100950 22925442 5793993 25887606 5712025 16783243 22490605 7223603 27212909 19749276 22470322 1196820 23308444 12318305 13271014 12850212 19296071 20606196 7506157 10805123 4563831 23592776 15092259 13668900 4494974 28314546 9688373 16660275 26653405 20265376 23328402 65821...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 10152436 ...
result:
ok 100001 lines
Test #71:
score: 0
Accepted
time: 286ms
memory: 40840kb
input:
100000 4898881 18305237 12063130 27374874 12812852 9581585 26656676 18814205 1975580 29732802 12533206 8654169 13281974 29470109 21077771 11147173 20317258 1899590 1231701 1837026 14666014 27529187 25128649 17927919 2393082 29882706 219479 5639515 22520118 24049393 29505846 8318818 8821258 271856 29...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 16181612 ...
result:
ok 100001 lines
Test #72:
score: 0
Accepted
time: 961ms
memory: 41896kb
input:
100000 9658959 1688342 6240220 16196751 15995317 702494 4633562 20709272 8679477 26984234 10222833 13077081 26697649 11469884 29570755 9065586 17884293 18215818 6448726 5520098 6240783 4305747 18040443 2158997 5243864 2522100 16687823 9072593 6894532 14201161 24816372 18644409 28382396 18744169 2241...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 104636130 104636130 104636130 104636130 104636130 104636130 104636130 104636130 104636130 104636130 104636130 104636130 104636130 104636130 104636130 104636130 104636130 104636130 104636130 104636130 104636130 104636130 104636130 104636130 104636130 104636130 1...
result:
ok 100001 lines
Test #73:
score: 0
Accepted
time: 119ms
memory: 37596kb
input:
100000 481659292307 392231013831 600881072802 45680778918 497254838381 693742315003 650297285101 697985684191 905387574080 872450913614 795333685864 6322613767 383178536872 403855157966 479685748303 436426965872 811127952616 108125494897 48164089857 658401197800 865667284396 40015491608 940720973939...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 481672328796 481691087268 481684275730 481688553485 481679985511 481691397690 481663271363 481672030705 481686644783 481671459964 481687816836 481672690271 481677612620 481680259795 481674762449 481677733726 481697163354 481665707220 481676198013 481691042941 4...
result:
ok 100001 lines
Test #74:
score: 0
Accepted
time: 186ms
memory: 38972kb
input:
99123 368085479547 209040965078 341872164496 512883728689 64502160426 292197185605 921658759745 691859574811 117452511459 635433016781 915849642896 577070506352 567345292883 409083250708 3922349146 589841981664 952925955123 232737499162 928422404551 920065732422 963475787142 736180674097 97410604154...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 368140058580 368140496840 368141647144 368134224992 368143195644 368127279034 368141098012 368138851392 368119479205 368138624032 368122165467 368147535980 368123324276 368115651591 368144510392 368125738195 368142018760 368120361485 368139115364 368109549760 3...
result:
ok 99124 lines
Test #75:
score: 0
Accepted
time: 335ms
memory: 40848kb
input:
100000 531539131776 264622902850 982326252487 354041849527 861112725426 726010424034 56930472700 438722738653 730765119449 575201803306 288563828748 118058899083 498146764940 847446096609 702882132423 154425390172 994557129594 650305523837 143800830314 908650692129 669949879758 535681711025 65601431...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 531721212750 531656694760 531718544118 531714379044 531704687152 531729312168 531674322160 531717685656 531730644918 531629494860 531667416156 531661816828 531654860172 531702565396 531699581380 531685749492 531712471348 531718006056 531683331356 531635570944 5...
result:
ok 100001 lines
Test #76:
score: -17
Wrong Answer
time: 482ms
memory: 41792kb
input:
100000 68252977557 107140775554 663737581227 955674405989 880366093281 523256809804 330498449827 140416586809 554297862188 229316498992 851327393258 656014484145 406166050319 840181702979 802843088676 968153381746 876696165642 589273192443 646421978713 676509056604 304849570545 613806791921 56621953...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 68805660997 68695602377 68725703877 68623607377 68701320237 68825551677 68852664497 68838802817 68815499797 68817536167 68881971017 68845022577 68624164937 68674035277 68679964697 68761592577 68853064217 68688488017 68784216797 68688741357 68764855197 688477041...
result:
wrong answer 38th lines differ - expected: '68880120336', found: '68886599792'
Subtask #5:
score: 0
Wrong Answer
Test #94:
score: 29
Accepted
time: 397ms
memory: 36888kb
input:
99281 551670361798 568902251563 418071776626 697635341894 641578820039 117221079324 812766431051 425410617978 663769685693 282144284527 799662290178 749088952784 586626406385 122473825417 459510657357 871705247919 443707710712 735612808044 237919555727 829939639783 122127143240 616906466299 24431898...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 598598746654 598598746654 598598746654 598598746654 598598746654 598598746654 598598746654 598598746654 598598746654 598598746654 598598746654 598598746654 598598746654 598598746654 598598746654 598598746654 598598746654 598598746654 598598746654 598598746654 5...
result:
ok 99282 lines
Test #95:
score: 0
Accepted
time: 373ms
memory: 37196kb
input:
100000 762048253398 544847923340 274220772253 709492519024 93107863549 990677171512 878434244170 777350365410 575870270443 928311965336 349432073756 948390047110 470116186153 495432094032 154258868766 719518553291 580490378718 661863092617 453262793865 191963964294 783054160061 953488248260 99347544...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 764692690700 764692690700 764692690700 764692690700 764692690700 764692690700 764692690700 764692690700 764692690700 764692690700 764692690700 764692690700 764692690700 764692690700 764692690700 764692690700 764692690700 764692690700 764692690700 764692690700 7...
result:
ok 100001 lines
Test #96:
score: 0
Accepted
time: 603ms
memory: 35256kb
input:
94281 131658172659 39811340435 707706551378 488270943344 316094085836 187344969354 859815132521 257455926058 398461451565 636824600504 968337263051 657378201148 381422070176 704193397218 215057852195 143696981366 245020143023 544889243460 19853724068 381481133078 270430609102 661194702920 9327187294...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 513000148750 513000148750 513000148750 513000148750 513000148750 513000148750 513000148750 513000148750 513000148750 513000148750 513000148750 513000148750 513000148750 513000148750 513000148750 513000148750 513000148750 513000148750 513000148750 513000148750 5...
result:
ok 94282 lines
Test #97:
score: 0
Accepted
time: 921ms
memory: 36632kb
input:
98013 219274952148 967847968840 993514312942 249215975388 377408063086 409277664478 513688960578 870781013811 5313297905 381786485971 932846528432 355907313844 568982393234 615505455703 556586556337 580222086746 513159753737 447726612888 849878699364 872433100635 459323693660 591180592643 9928561494...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 397148182990 397148182990 397148182990 397148182990 397148182990 397148182990 397148182990 397148182990 397148182990 397148182990 397148182990 397148182990 397148182990 397148182990 397148182990 397148182990 397148182990 397148182990 397148182990 397148182990 3...
result:
ok 98014 lines
Test #98:
score: 0
Accepted
time: 1431ms
memory: 37312kb
input:
100000 793084247557 856407004352 124019471672 758580217324 391555277659 748332370727 824874943785 454763878407 172204390651 200693040566 241971294452 420325832639 276303819033 490288760803 518648078771 428578774460 552156115324 270613111346 564717918818 914239531441 363337438048 359070665547 4058804...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1347236750935 1347236750935 1347236750935 1347236750935 1347236750935 1347236750935 1347236750935 1347236750935 1347236750935 1347236750935 1347236750935 1347236750935 1347236750935 1347236750935 1347236750935 1347236750935 1347236750935 1347236750935 134723675...
result:
ok 100001 lines
Test #99:
score: 0
Accepted
time: 391ms
memory: 37116kb
input:
100000 186878865231 744364257898 407647146449 178229661742 142659258467 867497410431 566102005411 743741769325 966116499644 374901320569 460953729268 166466122244 599772360298 778326103398 923306353276 541041861259 456336739387 460166266166 277100384431 124520154825 91585321170 808947541069 49305171...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 199304498331 199304498331 199304498331 199304498331 199304498331 199304498331 199304498331 199304498331 199304498331 199304498331 199304498331 199304498331 199304498331 199304498331 199304498331 199304498331 199304498331 199304498331 199304498331 199304498331 1...
result:
ok 100001 lines
Test #100:
score: 0
Accepted
time: 497ms
memory: 37212kb
input:
100000 701868643554 195683029255 191726673386 60711384096 246001015103 235534486089 867356428487 679339700226 266886499198 165357218261 892542762609 49935133853 78861964822 648163497576 458431664651 259806246005 944174571815 556122544299 640157239681 239448194098 270814892412 832337696089 1764039054...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 786865661638 786865661638 786865661638 786865661638 786865661638 786865661638 786865661638 786865661638 786865661638 786865661638 786865661638 786865661638 786865661638 786865661638 786865661638 786865661638 786865661638 786865661638 786865661638 786865661638 7...
result:
ok 100001 lines
Test #101:
score: 0
Accepted
time: 632ms
memory: 37204kb
input:
100000 438739740535 795928502119 872639081700 294554691174 226473457726 440783927287 150198126950 915922926283 516380773321 487345449103 452763239700 807838622400 226343342171 740475572228 441100842060 488895978441 476807788781 262972018901 384528067019 387913043837 839407743741 462422811237 7784206...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 865668346868 865668346868 865668346868 865668346868 865668346868 865668346868 865668346868 865668346868 865668346868 865668346868 865668346868 865668346868 865668346868 865668346868 865668346868 865668346868 865668346868 865668346868 865668346868 865668346868 8...
result:
ok 100001 lines
Test #102:
score: -29
Wrong Answer
time: 898ms
memory: 37084kb
input:
100000 694640698205 388240595320 449732757362 105097389837 586358675392 161335658819 425877820487 740670399542 410740826602 978399832816 430048583471 246136844716 701889327015 378563563646 252509017658 388896850779 573768686022 926987324089 60052463883 832676326751 23069584465 214255472478 621178722...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 4324121125415 4324121125415 4324121125415 4324121125415 4324121125415 4324121125415 4324121125415 4324121125415 4324121125415 4324121125415 4324121125415 4324121125415 4324121125415 4324121125415 4324121125415 4324121125415 4324121125415 4324121125415 432412112...
result:
wrong answer 2nd lines differ - expected: '4111303149419', found: '4324121125415'
Subtask #6:
score: 0
Skipped
Dependency #1:
0%