QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#84162 | #4827. Message Made of Noise | ExplodingKonjac | AC ✓ | 3ms | 3504kb | C++14 | 4.3kb | 2023-03-05 20:33:28 | 2023-03-05 20:33:30 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
//#define OPENIOBUF
namespace FastIO
{
class FastIOBase
{
protected:
#ifdef OPENIOBUF
static const int BUFSIZE=1<<22;
char buf[BUFSIZE+1];
int buf_p=0;
#endif
FILE *target;
public:
#ifdef OPENIOBUF
virtual void flush()=0;
#endif
FastIOBase(FILE *f): target(f){}
~FastIOBase()=default;
};
class FastOutput: public FastIOBase
{
#ifdef OPENIOBUF
public:
inline void flush()
{ fwrite(buf,1,buf_p,target),buf_p=0; }
#endif
protected:
inline void __putc(char x)
{
#ifdef OPENIOBUF
if(buf[buf_p++]=x,buf_p==BUFSIZE)flush();
#else
putc(x,target);
#endif
}
template<typename T>
inline void __write(T x)
{
static char stk[64],*top;top=stk;
if(x<0) return __putc('-'),__write(-x);
do *(top++)=x%10,x/=10; while(x);
for(;top!=stk;__putc(*(--top)+'0'));
}
public:
FastOutput(FILE *f=stdout): FastIOBase(f){}
#ifdef OPENIOBUF
inline void setTarget(FILE *f) { this->flush(),target=f; }
~FastOutput(){ flush(); }
#else
inline void setTarget(FILE *f) { target=f; }
#endif
template<typename ...T>
inline void writesp(const T &...x)
{ initializer_list<int>{(this->operator<<(x),__putc(' '),0)...}; }
template<typename ...T>
inline void writeln(const T &...x)
{ initializer_list<int>{(this->operator<<(x),__putc('\n'),0)...}; }
inline FastOutput &operator <<(char x)
{ return __putc(x),*this; }
inline FastOutput &operator <<(const char *s)
{ for(;*s;__putc(*(s++)));return *this; }
inline FastOutput &operator <<(const string &s)
{ return (*this)<<s.c_str(); }
template<typename T,typename=typename enable_if<is_integral<T>::value>::type>
inline FastOutput &operator <<(const T &x)
{ return __write(x),*this; }
}qout;
class FastInput: public FastIOBase
{
#ifdef OPENIOBUF
public:
inline void flush()
{ buf[fread(buf,1,BUFSIZE,target)]='\0',buf_p=0; }
#endif
protected:
inline char __getc()
{
#ifdef OPENIOBUF
if(buf_p==BUFSIZE) flush();
return buf[buf_p++];
#else
return getc(target);
#endif
}
public:
#ifdef OPENIOBUF
FastInput(FILE *f=stdin): FastIOBase(f){ buf_p=BUFSIZE; }
inline void setTarget(FILE *f) { this->flush(),target=f; }
#else
FastInput(FILE *f=stdin): FastIOBase(f){}
inline void setTarget(FILE *f) { target=f; }
#endif
inline char getchar() { return __getc(); }
template<typename ...T>
inline void read(T &...x)
{ initializer_list<int>{(this->operator>>(x),0)...}; }
inline FastInput &operator >>(char &x)
{ while(isspace(x=__getc()));return *this; }
template<typename T,typename=typename enable_if<is_integral<T>::value>::type>
inline FastInput &operator >>(T &x)
{
static char ch,sym;x=sym=0;
while(isspace(ch=__getc()));
if(ch=='-') sym=1,ch=__getc();
for(;isdigit(ch);x=(x<<1)+(x<<3)+(ch^48),ch=__getc());
return sym?x=-x:x,*this;
}
inline FastInput &operator >>(char *s)
{
while(isspace(*s=__getc()));
for(;!isspace(*s) && *s && ~*s;*(++s)=__getc());
return *s='\0',*this;
}
inline FastInput &operator >>(string &s)
{
char str_buf[(1<<8)+1],*p=str_buf;
char *const buf_end=str_buf+(1<<8);
while(isspace(*p=__getc()));
for(s.clear(),p++;;p=str_buf)
{
for(;p!=buf_end && !isspace(*p=__getc()) && *p && ~*p;p++);
*p='\0',s.append(str_buf);
if(p!=buf_end) break;
}
return *this;
}
}qin;
} // namespace FastIO
using namespace FastIO;
using LL=long long;
using LD=long double;
using UI=unsigned int;
using ULL=unsigned long long;
#ifndef DADALZY
#define FILEIO(file) freopen(file".in","r",stdin),freopen(file".out","w",stdout)
#else
#define FILEIO(file)
#endif
int n,m,a[10005];
bitset<80> msg;
void Alisa()
{
string s;
qin>>s>>m,n=s.size();
for(int i=1;i<=m;i++) qin>>a[i];
for(int i=0;i<n;i++) msg|=bitset<80>(s[i]-'a'+1)<<(i*5);
vector<int> res;
for(int i=1;i<=m;i++) if(msg.test(a[i]%75)) res.push_back(a[i]);
qout.writeln(res.size());
for(auto &i: res) qout<<i<<' ';
}
void Eva()
{
string res;
qin>>m;
for(int i=1;i<=m;i++) qin>>a[i],msg.set(a[i]%75);
bitset<80> mask((1<<5)-1);
for(int i=0;i<15;i++)
{
int x=(msg>>(i*5)&mask).to_ulong();
if(!x) break;
res.push_back(x+'a'-1);
}
qout<<res;
}
int main()
{
string who;
qin>>who;
if(who[0]=='A') Alisa();
else Eva();
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 3ms
memory: 3352kb
input:
Alisa spark 10000 833080662 16249270 933346436 811379468 925271783 359705680 76365900 158342757 877083772 38085457 819965104 408973036 16049452 102494634 585189166 986634959 68282709 745375330 964742302 111199534 259074194 357880009 300942070 891323449 763894642 774838701 270621761 288500028 8289322...
output:
1332 76365900 819965104 102494634 585189166 68282709 828932270 686146291 665357270 884290145 789163298 413782673 528640725 526996135 994190479 460835344 819986551 675395271 308861325 521333491 179902295 133132523 248438794 905646984 549579010 296521504 791163544 994596619 306582909 925254846 2763926...
input:
Eva 680 76365900 68282709 665357270 884290145 994190479 460835344 819986551 179902295 248438794 905646984 791163544 306582909 925254846 276392625 420437860 377848809 231938859 489595148 619192444 582767870 105689041 9017626 675013896 313465576 351027760 793927445 803202994 950242585 50040171 5551290...
output:
spark
result:
ok single line: 'spark'
Test #2:
score: 100
Accepted
time: 2ms
memory: 3340kb
input:
Alisa zoo 10000 956754604 875535727 764768765 403840087 67159452 949712722 115576737 264236473 212511213 562986097 859669991 893717805 838891893 47770507 416355290 159696911 702519086 615482060 179929327 523223494 166469421 452823317 391263419 32353165 631726585 32531344 424699975 294307421 85611161...
output:
1449 956754604 115576737 47770507 159696911 702519086 631726585 66827410 942558913 349195953 147511061 446984179 771120908 484848086 452431136 647744937 109700412 213495761 847504656 897905332 41654257 968738104 973632610 86888478 388822951 747939912 335290288 24026858 747706506 941096860 459079661 ...
input:
Eva 735 159696911 702519086 66827410 147511061 446984179 484848086 452431136 647744937 109700412 897905332 41654257 968738104 86888478 747939912 24026858 747706506 941096860 459079661 760997930 343694112 555867457 659042782 921184956 786187957 682377687 503178004 504489753 413922385 275665206 737791...
output:
zoo
result:
ok single line: 'zoo'
Test #3:
score: 100
Accepted
time: 2ms
memory: 3372kb
input:
Alisa at 10000 310982107 539408279 796963309 809203668 523777662 545413064 979220389 847693910 138708955 656945625 74716593 934751180 481326343 167326361 231049220 522995900 37351748 788253568 916125796 387068110 517465221 271899863 460441305 620026841 944960218 415699339 335393844 48690159 42519562...
output:
400 310982107 656945625 48690159 330613057 415389375 487188975 159121875 744335700 299316757 744405525 497593207 600099975 753149325 310222209 79804134 247875457 613486200 346013259 909797932 901441200 249331134 23729859 678146109 794774859 368375100 64719682 955108050 671702250 456008332 217711950 ...
input:
Eva 185 310982107 330613057 487188975 159121875 744335700 299316757 744405525 497593207 310222209 613486200 909797932 249331134 678146109 368375100 959707 192696300 246859282 116232675 893722575 2034159 66632257 633184732 698579184 834871800 392289234 657585375 529540432 32078100 989058682 915598509...
output:
at
result:
ok single line: 'at'
Test #4:
score: 100
Accepted
time: 2ms
memory: 3340kb
input:
Alisa if 10000 503842924 757491266 141782843 236156593 872816374 282494629 8442020 266993146 431387022 916904904 536726783 139144491 897563232 774836180 933098003 649977536 426446349 179675381 976057133 192994215 912014737 649318938 281784409 433754655 579718136 693929967 122871398 670071564 6931916...
output:
509 384935781 989583606 882369003 828765232 376846057 986865307 702378228 230836657 359614728 640801203 865218228 701337682 896329578 952676782 458907907 346262778 601681653 542953956 746216407 150973207 545378031 796891803 957253431 383714481 415308607 496592400 445262250 519496131 942547275 265195...
input:
Eva 280 384935781 882369003 828765232 640801203 701337682 746216407 150973207 545378031 280499250 974410503 988459882 381980782 466629681 192002625 289641607 580664628 407238375 711510228 521907456 685577107 849848250 312885981 260922450 538596825 287125575 488298832 937568025 443615481 379563532 90...
output:
if
result:
ok single line: 'if'
Test #5:
score: 100
Accepted
time: 3ms
memory: 3392kb
input:
Alisa eel 10000 419034977 506627655 360958666 682067714 313353796 431192689 370972316 850816320 352477330 854979535 29434206 87388648 151667551 275112589 276381040 773593631 79329274 524349772 621505949 536647547 733312990 826490666 279158815 667907864 31822931 739964904 109173174 245982571 49308618...
output:
787 419034977 809965280 990030457 33237607 569736907 389213488 827442527 916401530 841331487 909851637 363600162 286578900 750301425 222006225 768302487 252236857 689673982 101687855 617590357 205683837 632526762 687391725 903070362 265841180 540114157 877826482 378109052 706382188 711883800 8005759...
input:
Eva 374 419034977 809965280 990030457 389213488 827442527 916401530 841331487 750301425 222006225 768302487 252236857 689673982 617590357 205683837 632526762 687391725 265841180 877826482 378109052 711883800 800575957 563276775 183819000 218699863 687544137 214232713 33047630 761661150 735991502 806...
output:
eel
result:
ok single line: 'eel'
Test #6:
score: 100
Accepted
time: 2ms
memory: 3396kb
input:
Alisa cat 10000 429813780 552131166 455681195 172400210 186885255 914570530 663421268 36309837 82538846 199527239 779087404 945586459 313674436 774210063 266763546 350462343 300825395 764967849 225852148 348059331 687517865 907327558 175393488 120346637 521382066 657709825 513564198 595042659 958293...
output:
650 36309837 199527239 538685476 687180451 363919950 224838387 213291751 391000962 634518600 922115339 10615276 748994630 301871414 115572012 91642425 941379676 858599037 203776064 462558239 701144175 362247762 527566812 924735976 617040226 633303305 272433455 316999351 183208739 408570455 329440876...
input:
Eva 323 363919950 224838387 391000962 634518600 10615276 115572012 203776064 462558239 701144175 362247762 527566812 617040226 272433455 316999351 183208739 408570455 329440876 892416750 850449600 904221839 173729480 568596526 389278512 983893200 898586705 670263076 867162014 965181075 665230050 290...
output:
cat
result:
ok single line: 'cat'
Test #7:
score: 100
Accepted
time: 3ms
memory: 3340kb
input:
Alisa real 10000 293521636 162312678 673316503 632028874 710190218 188928780 96341370 555961165 289029081 884342732 350209747 664696652 979603608 961578721 626304467 295252288 164649292 651680084 873526805 958035183 683416223 968734513 278011061 293645402 432614810 140880339 131416445 264789129 7699...
output:
965 626304467 873526805 593145757 998089968 868745710 312742055 593443668 417140335 69448354 990944782 249453093 69022367 89078782 969941179 36212176 942637668 939741618 362799918 230301529 55134468 969140043 642326626 503312626 363849918 719950351 536420182 103086460 863196904 986944879 774580968 2...
input:
Eva 485 626304467 873526805 593145757 312742055 593443668 89078782 36212176 55134468 969140043 642326626 363849918 536420182 863196904 298784705 264762005 336488330 70691851 834171692 888690454 555835279 463030592 514401243 177754582 499643942 508235267 169617310 215363180 827937304 968774867 908556...
output:
real
result:
ok single line: 'real'
Test #8:
score: 100
Accepted
time: 3ms
memory: 3384kb
input:
Alisa queue 10000 728126608 503051601 532065691 649125958 544642619 764381278 99807076 262423745 184581551 580643211 497976687 957044918 859521736 259842796 62623567 113655749 841320664 634874725 723467845 260164633 827046454 235948513 311899723 949510236 35721445 834116947 179412731 28282810 623612...
output:
1573 262423745 497976687 827046454 834116947 28282810 623612034 549898517 989591872 969098495 546448292 639605119 912638930 191352767 392695512 216355215 113378557 433281092 953741410 386835840 44553235 225778070 857805772 895758307 104997919 856382410 597895650 388481260 189579765 692798334 3460243...
input:
Eva 790 262423745 827046454 834116947 28282810 623612034 549898517 969098495 912638930 191352767 216355215 433281092 953741410 386835840 44553235 857805772 895758307 104997919 189579765 692798334 346024365 5113585 968368072 433191835 304921969 7868405 104335297 887102559 977958542 622271255 25843614...
output:
queue
result:
ok single line: 'queue'
Test #9:
score: 100
Accepted
time: 3ms
memory: 3456kb
input:
Alisa cotton 10000 767299611 979529394 39913161 316465148 694895023 593011984 513519165 256775663 243632888 431633332 223892604 123184313 731920779 174332419 251563430 741176400 264757675 259841890 770005896 455626677 665021206 586325250 809408942 435300393 279787411 300849439 269112903 624785753 12...
output:
2275 316465148 431633332 174332419 251563430 741176400 770005896 455626677 586325250 809408942 788873128 375641873 113188430 781043501 153160058 601941102 764371296 126136453 193443170 25820105 626953064 547116927 405027248 408781962 957087007 84821562 173784987 416114251 201932851 269446056 1326534...
input:
Eva 1113 316465148 431633332 174332419 741176400 153160058 126136453 269446056 651120701 701247626 975619144 856841653 800574321 699966098 80178097 717361294 612101051 867750467 53847628 905190833 807790051 837902258 935368445 588618470 43879823 909143277 532759132 623662283 82580353 341019464 69932...
output:
cotton
result:
ok single line: 'cotton'
Test #10:
score: 100
Accepted
time: 3ms
memory: 3352kb
input:
Alisa zealous 10000 376434163 440125154 36359799 555365557 137615418 418390680 941228977 110954051 329055139 583988117 559131676 132626782 895760470 719530007 512820379 305723222 801475792 62346534 469882058 287661911 705144238 572901668 802362723 837688880 958060440 510581655 720263881 611350316 73...
output:
2375 440125154 555365557 137615418 418390680 583988117 559131676 132626782 512820379 837688880 510581655 720263881 925121035 417567479 45895518 154351300 586487127 898343722 837372471 132528777 527010676 984422647 856067642 29641732 454924068 820026320 334028792 30888307 741816184 914957332 37718575...
input:
Eva 1153 440125154 559131676 132626782 510581655 925121035 154351300 586487127 527010676 856067642 741816184 377185755 9982292 650317606 919106955 145865734 602716054 902554357 935519778 448047931 758926525 5207122 300966398 544494850 798493446 945685675 459145878 624933330 194933947 18130831 236425...
output:
zealous
result:
ok single line: 'zealous'
Test #11:
score: 100
Accepted
time: 2ms
memory: 3404kb
input:
Alisa assessee 10000 482462411 406338426 451753105 172617988 400471250 928079398 658730375 743529855 457495918 236775269 240125765 65250594 38143537 418720947 501030902 999438611 564408934 190385769 793443047 278651171 7840279 9961946 894345874 313117394 434989606 163661658 177490635 189003645 42853...
output:
2550 482462411 743529855 38143537 999438611 654659340 662501575 410590529 987165626 957478375 778569230 138588621 575788595 202490045 193149101 356134762 782072510 741459011 546036476 335567045 907944929 381441836 498431812 371881365 431582349 487597380 34192160 198068786 228820820 92653806 98449660...
input:
Eva 1284 482462411 743529855 999438611 662501575 138588621 193149101 356134762 782072510 741459011 546036476 381441836 498431812 431582349 228820820 711405029 66158199 780913365 22697125 213229607 716279481 520592126 778775496 922515080 132314565 927681161 269692425 457323755 17190525 305131367 7955...
output:
assessee
result:
ok single line: 'assessee'
Test #12:
score: 100
Accepted
time: 3ms
memory: 3400kb
input:
Alisa impatient 10000 456107448 565954838 600661924 423359702 440626827 441006466 795197649 443478311 770536535 709684383 92634315 850509440 341841933 416749530 775721850 324152699 710732825 975761495 731172339 389979549 818576792 935707276 703119428 671211209 695131944 227403587 89170727 832476447 ...
output:
2350 565954838 795197649 92634315 416749530 775721850 389979549 11246482 885103687 501318928 645372569 793106258 95852483 212220624 434750957 159092053 784443792 163037555 846922275 249696607 451923907 20719228 265196799 408112753 833585347 316675086 805467828 863272832 38921483 919702011 734017450 ...
input:
Eva 1171 565954838 92634315 416749530 389979549 11246482 501318928 793106258 212220624 434750957 784443792 451923907 408112753 523049744 886408155 288602933 285794325 432816758 264367132 375641353 488206665 546545894 689724475 168839253 736957603 403838138 683129728 241626528 690589353 964092042 706...
output:
impatient
result:
ok single line: 'impatient'
Test #13:
score: 100
Accepted
time: 2ms
memory: 3348kb
input:
Alisa bookkeeper 10000 390710414 631530615 963220561 501450406 351277306 602248210 85957489 881562188 450691883 138708871 331455659 745743962 340297641 243932822 682142300 643860072 962255409 429078261 419732560 641785179 681729629 753830142 211789688 516575649 543437870 822918258 88310983 576798802...
output:
3208 631530615 602248210 450691883 138708871 419732560 753830142 543437870 311048788 836807787 773857542 455454230 140676032 511301926 428156490 606004280 518303405 34950233 886831585 986274913 916402539 322598352 628390767 610250870 477278121 320950361 288219867 864505126 848022386 851051046 215492...
input:
Eva 1595 138708871 419732560 753830142 311048788 836807787 773857542 455454230 428156490 886831585 986274913 610250870 477278121 288219867 864505126 848022386 215492648 760589715 396695205 311526170 512635510 169828205 527491980 590778949 811415270 526234230 430429171 363294308 951369386 468026631 9...
output:
bookkeeper
result:
ok single line: 'bookkeeper'
Test #14:
score: 100
Accepted
time: 0ms
memory: 3344kb
input:
Alisa copyrighted 10000 739557444 330252893 964326887 887910648 165070809 903235717 652009792 814643692 630901069 585765565 101206711 559866628 791788710 330613970 309583309 642328357 778635645 120527334 116527570 729858307 563138990 220835202 217041534 894279818 808177617 556013181 774973167 510000...
output:
3066 630901069 559866628 642328357 778635645 729858307 808177617 556013181 774973167 263757925 673804365 636946200 902022107 44158505 2747070 979008240 608323224 719108669 408988247 556512375 912692408 199126224 798628906 656009953 148391295 475844571 129252090 285557856 583718851 582319981 74215197...
input:
Eva 1510 559866628 778635645 729858307 556013181 774973167 673804365 556512375 912692408 656009953 475844571 129252090 285557856 582319981 31152000 372912932 349357974 590768799 461690256 924102168 151829442 672775394 751550367 755678669 647337497 874252319 79369674 320516669 283519957 659150431 560...
output:
copyrighted
result:
ok single line: 'copyrighted'
Test #15:
score: 100
Accepted
time: 3ms
memory: 3352kb
input:
Alisa squeezeboxes 10000 157094287 809151185 885591341 968810165 943658241 456220129 251205115 963575422 527082156 400831284 639279124 478290197 149013822 155506716 389372449 193333788 390911465 699989485 515969381 745192528 146306211 938174688 227793494 161046218 477570505 9894134 499988384 8103411...
output:
3865 885591341 456220129 251205115 963575422 400831284 639279124 389372449 699989485 515969381 745192528 146306211 477570505 9894134 499988384 533347828 822964536 851023925 285057857 675927206 217736152 934494479 739750405 611145652 616414004 952634384 82344198 556159804 354247660 848146625 70659747...
input:
Eva 1889 885591341 456220129 251205115 963575422 400831284 477570505 9894134 533347828 822964536 851023925 285057857 217736152 739750405 952634384 82344198 556159804 848146625 100990242 996810754 471320517 412978217 467364990 752484247 718186584 771904751 938804351 363543193 857684984 758232802 7025...
output:
squeezeboxes
result:
ok single line: 'squeezeboxes'
Test #16:
score: 100
Accepted
time: 2ms
memory: 3376kb
input:
Alisa embarrassment 10000 863907095 50900552 940385214 923016987 195384280 149329830 157040498 699365836 728151611 802183368 964476670 766353465 883068628 140698617 576455081 638837097 462505317 428012304 717738800 611701562 107433485 338374166 40322202 553171030 361969314 458428199 482891314 240678...
output:
3748 50900552 940385214 149329830 728151611 766353465 576455081 717738800 611701562 107433485 338374166 361969314 482891314 755482241 635536407 953763800 916288016 361382762 782283945 192996002 717415414 869880731 731278432 214054394 317846552 27962175 698108279 990844840 282049389 528544460 7537784...
input:
Eva 1823 766353465 717738800 611701562 107433485 338374166 482891314 755482241 635536407 953763800 361382762 782283945 192996002 717415414 869880731 214054394 27962175 698108279 528544460 753778407 806268289 355094606 197659449 737524685 774734801 769419980 247217205 116076873 929336724 50318602 439...
output:
embarrassment
result:
ok single line: 'embarrassment'
Test #17:
score: 100
Accepted
time: 3ms
memory: 3396kb
input:
Alisa facelessnesses 10000 358815078 441702436 357306969 876232230 829173472 387236074 319588548 22588795 57315925 261669197 860052977 970248515 700859096 727417383 897121799 236588200 741288488 304680816 973597730 899737234 818651018 844515671 847720011 951605044 907126697 920420424 536760796 74546...
output:
4391 357306969 876232230 829173472 57315925 261669197 860052977 970248515 236588200 304680816 973597730 899737234 847720011 907126697 74546605 19605240 971606966 369493539 337815722 949057902 287893412 906292839 504125687 230292941 544064652 797695435 520766480 542050337 149469711 332120710 43030537...
input:
Eva 2187 829173472 57315925 236588200 304680816 74546605 971606966 949057902 287893412 544064652 542050337 430305377 882339501 308303722 847444885 277525644 149575155 220925310 427710077 16753234 897850337 277835009 675062860 84005027 421128031 683888293 448762201 627350210 105784543 747219685 95630...
output:
facelessnesses
result:
ok single line: 'facelessnesses'
Test #18:
score: 100
Accepted
time: 1ms
memory: 3428kb
input:
Alisa oxyphenbutazone 10000 798496889 591831196 689866887 718516037 939088236 750029536 32504325 524026335 454108713 535099022 19575145 267787878 714460751 824215363 128955594 411401580 370729264 520608037 586051245 545847182 156497495 298980033 263178383 961267578 735195675 768423754 868450776 3886...
output:
4684 798496889 718516037 939088236 750029536 32504325 524026335 454108713 535099022 19575145 267787878 824215363 545847182 298980033 263178383 961267578 735195675 107990211 250927728 95025777 714505708 771341039 972151240 435738668 164288835 701630638 92190619 390756734 928675232 497124585 17891156 ...
input:
Eva 2309 798496889 718516037 750029536 32504325 535099022 19575145 267787878 107990211 250927728 95025777 771341039 972151240 164288835 701630638 17891156 588794058 95030744 591652418 302663449 37153577 635983842 861561481 781671608 546046969 286827248 994656685 49518133 633975419 480273453 45071564...
output:
oxyphenbutazone
result:
ok single line: 'oxyphenbutazone'
Test #19:
score: 100
Accepted
time: 3ms
memory: 3368kb
input:
Alisa uncopyrightable 10000 40150886 763706492 122394813 807704159 536297792 750987557 115171123 810353340 610211761 244154724 969998196 16564183 375564698 574704451 798113067 379418611 35315906 832211290 55151894 916263535 105649044 475634989 856990225 797136254 921316465 143597900 736016212 474798...
output:
4203 40150886 763706492 536297792 810353340 610211761 244154724 798113067 379418611 832211290 916263535 856990225 797136254 921316465 300976585 963237867 638407957 470797141 259295185 625788611 55631517 42629106 769439891 793016816 947734548 747092708 62583692 709674454 906214743 690917128 339071434...
input:
Eva 2128 763706492 536297792 810353340 244154724 798113067 916263535 797136254 638407957 259295185 625788611 55631517 42629106 769439891 947734548 690917128 339071434 500345742 247582177 482795441 319786429 431772150 376316933 760444231 35317592 719080385 433954456 564629627 202633310 549428654 9375...
output:
uncopyrightable
result:
ok single line: 'uncopyrightable'
Test #20:
score: 100
Accepted
time: 3ms
memory: 3360kb
input:
Alisa decommissioning 10000 382835686 679002417 815396195 614990250 316953010 510954891 755838644 474793416 636240104 959829812 549408397 315423690 730153926 758389557 768870797 263724012 174045815 452197876 232033487 368630330 17284226 524695595 234115558 27688098 683706858 79961009 751009094 73156...
output:
5329 815396195 316953010 510954891 755838644 474793416 549408397 315423690 730153926 758389557 368630330 524695595 234115558 27688098 683706858 751009094 731566703 69615957 726559025 201790745 601535347 166029760 55195623 810850136 809059095 521887406 327187430 720696693 125473161 482572263 99462565...
input:
Eva 2687 815396195 510954891 730153926 368630330 524695595 234115558 751009094 731566703 726559025 55195623 327187430 482572263 99462565 570353693 80254285 912381775 699435986 320779898 823693150 155417828 626993770 235522291 7755855 402045835 652243493 447485286 689775963 391457515 96863050 2499136...
output:
decommissioning
result:
ok single line: 'decommissioning'
Test #21:
score: 100
Accepted
time: 3ms
memory: 3504kb
input:
Alisa kindheartedness 10000 184401044 43479672 626522598 125256287 393936792 796090108 623375502 964392055 745191771 685632155 122244894 795113405 154816720 751814796 908762470 986021242 828628967 790557756 662677460 258829873 931275678 435309418 514192615 132684947 462635436 502645052 66049087 6164...
output:
4142 184401044 125256287 393936792 796090108 623375502 685632155 122244894 795113405 154816720 908762470 828628967 931275678 132684947 462635436 616488013 73015482 408192 870080292 86092827 204085661 580523991 183047469 546216740 457007072 527873723 473201736 114077906 33711611 67377887 831754311 68...
input:
Eva 2044 393936792 685632155 828628967 931275678 462635436 616488013 870080292 86092827 204085661 183047469 546216740 473201736 67377887 683071667 223097550 363236703 574102830 375849383 653905736 37895186 810179555 959294452 276463973 293693677 297547148 92592807 498155769 273631169 903860273 43888...
output:
kindheartedness
result:
ok single line: 'kindheartedness'
Test #22:
score: 100
Accepted
time: 3ms
memory: 3472kb
input:
Alisa appropriateness 10000 330513032 853761192 471913635 973083553 210304782 192323109 93400951 312902092 218527177 220141550 772849545 474554266 236840727 992261006 242750804 48564115 825470066 137963562 557516732 280829723 624831146 479324406 32347115 449750828 375369355 14352941 431101170 936947...
output:
4061 471913635 210304782 192323109 218527177 220141550 474554266 992261006 242750804 48564115 280829723 624831146 32347115 692132835 790036795 722024683 585431974 194748920 27073407 673008614 627589871 999391759 859145175 381076200 55590321 153633660 319481831 896422783 168799765 161563571 301532391...
input:
Eva 2003 471913635 992261006 280829723 790036795 585431974 194748920 27073407 999391759 859145175 55590321 319481831 272576695 33064491 546537989 547548140 679826002 215055409 383491388 942477647 877841920 924434324 479410889 74124957 847396145 968501021 819136820 13909296 141466748 542175473 956681...
output:
appropriateness
result:
ok single line: 'appropriateness'