QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#150434 | #6660. 택시 여행 | penguinman# | 17 | 988ms | 28184kb | C++17 | 3.1kb | 2023-08-25 17:09:16 | 2024-07-04 01:51:47 |
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);
vi solve_subtask_1_3_4(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);
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 ans(N,inf);
ans[0] = 0;
std::map<ll,vi> mem;
rep(i,0,N){
mem[-B[i]].pb(i);
}
for(auto el__: mem){
vi v = el__.second;
ll b = -el__.first;
vi dist(N, inf);
std::priority_queue<pii> que;
for(auto el: v){
if(ans[el] == inf) continue;
dist[el] = ans[el]+A[el];
que.push(mp(-dist[el], el));
}
while(!que.empty()){
auto el = que.top(); que.pop();
ll now = el.second;
if(-el.first > dist[now]) continue;
rep(i,0,edge[now].size()){
ll next = edge[now][i];
if(dist[next] > dist[now]+b*weight[now][i]){
dist[next] = dist[now]+b*weight[now][i];
que.push(mp(-dist[next], next));
}
}
}
rep(i,0,N) ans[i] = std::min(ans[i], dist[i]);
}
{
reverse(all(ans));
ans.pop_back();
reverse(all(ans));
}
return ans;
}
vi solve_subtask_2(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();
std::deque<ll> a,b;
ll dist = 0;
a.pb(A[0]);
b.pb(B[0]);
vi ans(N);
rep(i,1,N){
dist += W[i-1];
while(a.size() > 1){
ll n = a.size();
if(b[n-1]*dist+a[n-1] >= b[n-2]*dist+a[n-2]){
a.pop_back();
b.pop_back();
}
else break;
}
ans[i] = b.back()*dist+a.back();
if(b[0] > B[i]){
b.emplace_front(B[i]);
a.emplace_front(ans[i]+A[i]-dist*B[i]);
}
}
{
reverse(all(ans));
ans.pop_back();
reverse(all(ans));
}
return ans;
}
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();
bool flag = true;
rep(i,0,N-1){
if(U[i] != i || V[i] != i+1) flag = false;
}
if(flag) return solve_subtask_2(A,B,U,V,W);
else return solve_subtask_1_3_4(A,B,U,V,W);
}
Details
Tip: Click on the bar to expand more detailed information
Subtask #1:
score: 0
Wrong Answer
Test #1:
score: 7
Accepted
time: 0ms
memory: 3792kb
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: 0ms
memory: 3856kb
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: 0ms
memory: 3804kb
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: 0ms
memory: 4076kb
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: 0ms
memory: 4052kb
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: 0ms
memory: 3760kb
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: 0ms
memory: 3780kb
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: 3728kb
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: 3796kb
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: 0ms
memory: 3796kb
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: 0ms
memory: 3860kb
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: 3788kb
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: 0ms
memory: 3788kb
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: 0ms
memory: 4048kb
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: 0ms
memory: 3824kb
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: 0ms
memory: 3796kb
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: -7
Wrong Answer
time: 0ms
memory: 4056kb
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 1970661902706 2095367727796 2295305455016 2392656867251 1960801118622 1977403784892 2009788771930 2014313798884 2035519586570...
result:
wrong answer 12th lines differ - expected: '1871811459826', found: '1970661902706'
Subtask #2:
score: 0
Wrong Answer
Test #31:
score: 0
Wrong Answer
time: 29ms
memory: 11056kb
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:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1148030742334 1636760433058 2131282232650 2353514637869 2672707119337 2763307672337 2948215735597 3003888852169 3054019822989 3117708941277 3168979051095 3214001638323 3269286229765 3273106480907 3287227043365 3335909595067 3361857042147 3364657567217 338173015...
result:
wrong answer 33rd lines differ - expected: '3905137730008', found: '3910919408377'
Subtask #3:
score: 0
Skipped
Dependency #1:
0%
Subtask #4:
score: 17
Accepted
Test #69:
score: 17
Accepted
time: 214ms
memory: 27680kb
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: 589ms
memory: 26560kb
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: 538ms
memory: 25636kb
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: 581ms
memory: 24988kb
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: 396ms
memory: 27820kb
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: 604ms
memory: 26400kb
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: 781ms
memory: 25680kb
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: 0
Accepted
time: 463ms
memory: 25192kb
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:
ok 100001 lines
Test #77:
score: 0
Accepted
time: 198ms
memory: 24696kb
input:
98001 717031222052 331867116389 221882585098 454967007080 223129085016 710978007691 1440804904 400863577822 517713094819 924406511598 929770894084 425299879944 367162704545 61417490984 645160842118 814895080672 439017712275 32898686436 262811271268 516343874528 581688846420 471934819696 686447934916...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 717599955458 717599955458 717599955458 717599955458 717599955458 717599955458 717599955458 717599955458 717599955458 717599955458 717599955458 717599955458 717599955458 717599955458 717599955458 717599955458 717599955458 717599955458 717599955458 717599955458 7...
result:
ok 98002 lines
Test #78:
score: 0
Accepted
time: 98ms
memory: 25188kb
input:
100000 0 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 ...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0...
result:
ok 100001 lines
Test #79:
score: 0
Accepted
time: 844ms
memory: 27580kb
input:
100000 30000000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 434579 0 0 0 0 0 0 0 0 0 0 0 0...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 31105951 ...
result:
ok 100001 lines
Test #80:
score: 0
Accepted
time: 936ms
memory: 26624kb
input:
100000 30000000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 33810751 ...
result:
ok 100001 lines
Test #81:
score: 0
Accepted
time: 944ms
memory: 25528kb
input:
100000 30000000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 40403262 ...
result:
ok 100001 lines
Test #82:
score: 0
Accepted
time: 942ms
memory: 25212kb
input:
100000 30000000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 91929770 ...
result:
ok 100001 lines
Test #83:
score: 0
Accepted
time: 962ms
memory: 25064kb
input:
100000 30000000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 46507333 ...
result:
ok 100001 lines
Test #84:
score: 0
Accepted
time: 860ms
memory: 28184kb
input:
100000 1000000000 0 2362347 40838501 69646720 15684006 77624780 131300416 164246240 33332245 0 28423930 19661685 52949920 1297085 0 0 295032123 41695073 89307321 84790250 111670522 16094746 0 6116544 8297618 27158169 8882836 7709007 26767995 74186140 52850123 33365416 77420680 6359558 33180639 48306...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1032335734 1032335734 1031215390 1030804030 1032335734 1032335734 1032335734 1032335734 1022480320 1032335734 1032335734 1026124060 1032335734 1032335734 1032335734 1032335734 1032335734 1032335734 1022010340 1032335734 1031779960 1032335734 1032335734 10262191...
result:
ok 100001 lines
Test #85:
score: 0
Accepted
time: 967ms
memory: 26588kb
input:
100000 1000000000 0 283183953 0 32767971 0 0 0 0 0 0 218632750 65401101 128027566 0 0 0 0 0 0 0 0 0 0 6083750 420433880 0 0 3203690 0 0 42663826 34937416 0 25949890 0 243605133 0 0 0 47292921 15163577 414190790 54262970 0 0 408913940 0 0 139890290 0 176254900 40883931 0 255676053 13733003 152468990 ...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1034547184 1034547184 1034547184 1034547184 1034547184 1034547184 1034547184 1034547184 1034547184 1034547184 1034547184 1034547184 1034547184 1034547184 1034547184 1034547184 1034547184 1034547184 1034547184 1034547184 1034547184 1034547184 1034547184 10345471...
result:
ok 100001 lines
Test #86:
score: 0
Accepted
time: 978ms
memory: 26124kb
input:
100000 1000000000 0 22444490 5319113 0 351436550 0 166175643 0 0 0 0 66953240 0 0 0 0 0 0 0 37038201 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 79365153 0 0 0 0 0 0 0 273149703 0 20410096 0 5098795 0 0 7008639 0 0 0 0 0 0 0 334071920 26239331 351585050 0 208254933 0 0 0 0 0 0 0 0 0 0 0 70171600 0 0 0 64936...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1056821796 1059161614 1056859563 1059161614 1059161614 1059161614 1059161614 1059161614 1055873169 1059161614 1053373999 1059161614 1059161614 1053650604 1059161614 1059161614 1059161614 1059161614 1059161614 1058987265 1059161614 1059161614 1059161614 10591616...
result:
ok 100001 lines
Test #87:
score: 0
Accepted
time: 944ms
memory: 25088kb
input:
100000 1000000000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1111952365 1111952365 1111952365 1111952365 1111952365 1111952365 1111952365 1111952365 1111952365 1111952365 1111952365 1111952365 1111952365 1111952365 1111952365 1111952365 1111952365 1111952365 1111952365 1111952365 1111952365 1111952365 1111952365 11119523...
result:
ok 100001 lines
Test #88:
score: 0
Accepted
time: 877ms
memory: 24992kb
input:
100000 1000000000 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1220116656 1220116656 1220116656 1220116656 1220116656 1220116656 1220116656 1220116656 1220116656 1220116656 1220116656 1220116656 1220116656 1220116656 1220116656 1220116656 1220116656 1220116656 1220116656 1220116656 1220116656 1220116656 1220116656 12201166...
result:
ok 100001 lines
Test #89:
score: 0
Accepted
time: 877ms
memory: 28016kb
input:
100000 1000000000000 35676367004 34421862850 58790472081 333330206283 36990364207 62462735590 249958814650 0 0 62442092650 83264238143 39961334590 166630359646 71407025158 32197138596 166618291846 35685472304 39965416630 62444471140 124968558590 499965313160 166592877376 58769594121 76890697413 3223...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1000039204390 1000060980460 1000033117690 1000003200970 1000048228120 1000037503360 1000041848800 1000039525870 1000012566370 1000058146300 1000069304020 1000038995500 1000037928640 1000022152690 1000061331940 1000049996440 1000030099090 1000034913460 100005576...
result:
ok 100001 lines
Test #90:
score: 0
Accepted
time: 988ms
memory: 26744kb
input:
100000 1000000000000 36913185997 39872826010 58772835111 83283019463 0 62413164430 90858089589 35663540774 47571797739 33285744033 99899479600 52577983977 99917743660 52585316037 36980806837 39930501910 111033339141 35679842444 38397374881 36996919717 43409648649 45384539104 124908110570 41554818086...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1000130506630 1000128167200 1000052990410 1000057741480 1000057625890 1000089039880 1000053684520 1000058535490 1000052117800 1000053005410 1000101175060 1000057806520 1000082911000 1000050474460 1000062885790 1000070491300 1000078692310 1000042233820 100006528...
result:
ok 100001 lines
Test #91:
score: 0
Accepted
time: 975ms
memory: 25788kb
input:
100000 1000000000000 47540351679 111092119521 142738517727 249859716550 43357085349 49798836350 99858875980 32071086096 38248944901 499870406690 36817672957 47479015659 166524565066 32102795076 32148839766 99879926560 62334039910 58658500371 0 76733039043 199842995630 199791905300 45265722724 767632...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1000101429520 1000036384420 1000134167980 1000140668020 1000122592990 1000205469940 1000160478610 1000205261860 1000216104910 1000143656920 1000230659620 1000162765540 1000142246200 1000173552880 1000127508190 1000139428030 1000169853520 1000171535920 100009312...
result:
ok 100001 lines
Test #92:
score: 0
Accepted
time: 930ms
memory: 25564kb
input:
100000 1000000000000 0 35036708804 66099396006 39245264260 142480941237 142236577017 54726574345 199281186440 76023091083 39373984600 61460405830 54818980555 49056302180 110740970211 33679764100 49353041510 76048665993 124180426370 124227517070 37555491211 199233946280 65909989206 52093066707 520067...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1001033746720 1000938763840 1000849592260 1000941643090 1000406066650 1000650430870 1001000977660 1000936529470 1000970390740 1000812922750 1001247615880 1000908571450 1001090030770 1000637098150 1000932188170 1000793291440 1000944815830 1001069208430 100102211...
result:
ok 100001 lines
Test #93:
score: 0
Accepted
time: 958ms
memory: 25436kb
input:
100000 1000000000000 44619945175 50033554581 322973377233 101210915241 0 30771267760 135055820577 115996099190 57412980396 114907182470 42785517530 36159222271 61686478446 27508848670 92817353980 102068299431 24958381653 0 41298796010 192216070730 39631983650 0 43311727107 28069478827 37044893739 32...
output:
secret: XBNN6R0Jnospxlfz11GWxd4ldkzb0I 1011140393230 1009019978320 1010486196790 1010538242440 1011083064370 1009266577480 1009065856420 1009047609460 1010008356940 1010136526180 1008108021070 1002376724350 1005734858890 1007585449750 1007781005620 1009680858250 1008673110550 1008116716150 100959474...
result:
ok 100001 lines
Subtask #5:
score: 0
Time Limit Exceeded
Test #94:
score: 0
Time Limit Exceeded
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:
Unauthorized output
result:
Subtask #6:
score: 0
Skipped
Dependency #1:
0%