QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#294718#4827. Message Made of Noiseucup-team1055#AC ✓1ms3604kbC++201.8kb2023-12-30 16:08:092023-12-30 16:08:10

Judging History

你现在查看的是最新测评结果

  • [2023-12-30 16:08:10]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:3604kb
  • [2023-12-30 16:08:09]
  • 提交

answer

#include <bits/stdc++.h>

#define rep(i, s, n) for (int i = int(s); i < int(n); i++)
#define rrep(i, s, n) for (int i = int(n) - 1; i >= int(s); i--)
#define all(v) (v).begin(), (v).end()

using ll = long long;
using ull = unsigned long long;
using ld = long double;

template <class T> bool chmin(T &a, T b) {
    if (a <= b) return false;
    a = b;
    return true;
}

template <class T> bool chmax(T &a, T b) {
    if (a >= b) return false;
    a = b;
    return true;
}

int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);
    std::string name;
    std::cin >> name;
    const int sz = 26;
    if(name == "Alisa") {
        std::string s;
        std::cin >> s;
        int len = s.size();
        int n;
        std::cin >> n;
        assert(n == 10000);
        std::vector<int> a(n);
        std::vector<int> p = {s[0] - 'a'};
        rep(i,1,len) {
            if(s[i] == s[i-1]) p.emplace_back(sz);
            p.emplace_back(s[i] - 'a');
        }
        int m = p.size();
        std::vector<int> b;
        rep(i,0,n) {
            std::cin >> a[i];
            int idx = i / (n / m);
            if(idx < m && a[i] % (sz + 1) == p[idx]) {
                b.emplace_back(a[i]);
            }
        }
        std::cout << b.size() << '\n';
        rep(i,0,b.size()) {
            std::cout << b[i] << " \n"[i + 1 == (int)b.size()];
        }
    }
    else {
        assert(name == "Eva");
        int m;
        std::cin >> m;
        std::string ans = "";
        int prev = -1;
        rep(i,0,m) {
            int x;
            std::cin >> x;
            int p = x % (sz + 1);
            if(prev != p) {
                if(p < sz) ans += char('a' + p);
            }
            prev = p;
        }
        std::cout << ans << '\n';
    }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 0ms
memory: 3564kb

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:

391
76365900 774838701 220543227 964868778 539813691 153415449 955107603 675395271 120288555 3385791 887100165 717590628 180893565 463899330 781616052 451134810 675013896 249663726 890635977 686444130 50040171 165308166 997308711 25781670 651891582 534262923 529412481 365695362 915641595 190316592 6...

input:

Eva
208
220543227 964868778 539813691 153415449 955107603 3385791 180893565 781616052 451134810 249663726 890635977 686444130 50040171 25781670 651891582 534262923 365695362 915641595 190316592 646736040 921696399 113210910 311546781 387201618 631766916 304709139 579608991 19150254 381087333 3453702...

output:

spark

result:

ok single line: 'spark'

Test #2:

score: 100
Accepted
time: 1ms
memory: 3488kb

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:

375
562986097 523223494 631726585 423355381 405570886 397922731 761583652 659042782 574674991 536156980 495980197 750621247 709124083 984815899 362411953 896969887 735139501 31235272 236835925 175352038 592582444 698386075 769255054 906273655 296153953 546810262 611167840 475186390 231901270 6329951...

input:

Eva
187
562986097 523223494 423355381 405570886 397922731 536156980 495980197 750621247 984815899 735139501 236835925 592582444 769255054 475186390 632995153 723948784 903761548 723905395 236107006 891561976 761811154 965951377 304349992 321455734 57552631 345880771 377993599 614426335 392935831 383...

output:

zoo

result:

ok single line: 'zoo'

Test #3:

score: 100
Accepted
time: 1ms
memory: 3600kb

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:

381
912925836 341679249 264617901 744405525 615429576 141387012 955640241 373749363 861298137 600099975 819508401 29075895 923321133 921211326 527251221 447483690 563938065 310444866 819374238 416862504 982205406 296216298 41095512 363875922 192696300 80415153 272663118 757772226 336406473 358879626...

input:

Eva
199
341679249 141387012 955640241 373749363 861298137 600099975 29075895 921211326 527251221 563938065 310444866 982205406 296216298 41095512 363875922 192696300 757772226 336406473 358879626 940027869 956951307 239742180 395008920 118399023 527950602 862345332 631457127 686235996 829770642 2163...

output:

at

result:

ok single line: 'at'

Test #4:

score: 100
Accepted
time: 1ms
memory: 3544kb

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:

377
774836180 933098003 488034647 785795102 892199483 773819009 34188326 435772124 72738926 214487711 518360021 866241008 530962595 478246742 533495816 237068243 596965121 792230849 417477707 749851298 649282346 116280854 140860061 552564593 896299649 964236941 846772793 771437393 445141421 53283693...

input:

Eva
206
933098003 892199483 34188326 435772124 72738926 866241008 478246742 533495816 596965121 417477707 749851298 140860061 445141421 77235965 612839123 301685426 284546447 336070925 261862019 161388404 303607043 212193116 58518539 208040867 505667105 772791146 667653524 557509076 789427493 462210...

output:

if

result:

ok single line: 'if'

Test #5:

score: 100
Accepted
time: 1ms
memory: 3548kb

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:

397
313353796 275112589 979390822 981574825 173214751 71674366 752102743 955994674 260550679 947010100 631813558 326781652 87633337 429835684 459558796 45484231 883690267 227831593 220893484 406542325 151792897 295325005 867375463 981570748 676089319 273743257 979271590 368296177 879561805 350846374...

input:

Eva
201
313353796 955994674 87633337 459558796 883690267 227831593 406542325 981570748 676089319 979271590 350846374 886851130 271128253 186811411 707338228 497836102 275247400 545558818 535762543 587694937 570651106 829535746 779051956 780493621 114127357 529294450 157517950 108057595 532311295 224...

output:

eel

result:

ok single line: 'eel'

Test #6:

score: 100
Accepted
time: 1ms
memory: 3516kb

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:

411
663421268 149356145 769131641 86882303 614349443 376370012 254059337 372796670 515367497 24484223 973652591 875584838 211565252 548009849 117107831 150265343 15568283 706316222 279790472 929793143 281230922 408570455 815004074 203612429 905132612 310617290 588622115 663141467 511765346 898586705...

input:

Eva
221
149356145 86882303 614349443 376370012 372796670 211565252 548009849 706316222 279790472 929793143 408570455 905132612 588622115 663141467 511765346 898586705 551829647 358971833 480618362 665232212 608358953 539969195 376275674 110219915 233975549 741047078 465665168 638902298 356883491 796...

output:

cat

result:

ok single line: 'cat'

Test #7:

score: 100
Accepted
time: 1ms
memory: 3496kb

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:

366
873526805 293645402 296052263 78636977 950791490 456412094 357099506 328981301 429627473 296003960 87513146 943025453 695644811 167288291 643264919 163893554 968774867 216011978 761433173 361145159 294059501 864848357 495449666 174575834 451926638 541880675 429949394 671384690 835562402 24716841...

input:

Eva
196
873526805 293645402 296052263 78636977 357099506 296003960 167288291 643264919 163893554 968774867 361145159 451926638 671384690 247168412 94567139 367385264 751630094 338373710 314512595 839693510 604509902 95485409 530191700 658646225 357737975 422559413 772903124 841031603 903617279 38077...

output:

real

result:

ok single line: 'real'

Test #8:

score: 100
Accepted
time: 1ms
memory: 3544kb

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:

360
841320664 311899723 472733053 601092052 87813088 895758307 756362383 332394748 496359187 386793862 251180395 982471615 728792548 680992099 713604481 492898597 122181550 76256197 888536860 279150262 635086537 698655175 703220173 415118347 78108613 418434919 154267432 367308907 887629066 348118063...

input:

Eva
178
311899723 472733053 601092052 87813088 895758307 756362383 332394748 496359187 386793862 251180395 713604481 492898597 76256197 888536860 279150262 698655175 703220173 154267432 348118063 890666620 142884637 428259409 563439040 303755173 624131179 268710550 518979814 27821437 5655571 5251842...

output:

queue

result:

ok single line: 'queue'

Test #9:

score: 100
Accepted
time: 1ms
memory: 3492kb

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:

375
251563430 624785753 113188430 781043501 709623344 409578554 794232002 671563901 761479760 392284109 626918726 378912440 588618470 200979740 758860652 623662283 320656268 368191739 460789940 27476039 315874001 284691863 611861690 813378404 959389544 121765223 929853704 564796613 856942580 9282205...

input:

Eva
204
624785753 409578554 794232002 626918726 378912440 200979740 623662283 368191739 460789940 813378404 929853704 564796613 856942580 95266532 333418547 715374344 55331318 267439997 653498363 961382711 487121582 469149572 415647965 976167911 911820863 115859324 248490263 823542959 132321452 3233...

output:

cotton

result:

ok single line: 'cotton'

Test #10:

score: 100
Accepted
time: 1ms
memory: 3600kb

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:

376
527010676 69651412 29641732 561148288 544494850 432483487 156756976 544195906 225527218 176784253 644764642 856530016 926456047 950491339 891174796 267479224 347053381 901441492 267433459 358032499 228252733 450846646 923102701 920052268 266018470 499213420 101914468 882837115 729659878 82206322...

input:

Eva
203
69651412 29641732 432483487 156756976 176784253 644764642 950491339 267479224 450846646 920052268 499213420 101914468 729659878 822063220 422377333 49282369 109021543 336230809 161919052 291324787 393009649 243392335 477573520 21518059 732862543 303910627 100341454 725058139 5743525 66355913...

output:

zealous

result:

ok single line: 'zealous'

Test #11:

score: 100
Accepted
time: 1ms
memory: 3536kb

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:

353
189003645 901303578 291423501 626403807 598987656 933934617 342043884 808848774 944446203 121506669 775381437 904752936 57261195 295844400 568796175 286666641 365672934 461714634 682609761 656780265 984366000 68637834 36812718 640868517 105913305 325816668 580800861 664277760 354601206 345168972...

input:

Eva
171
901303578 291423501 342043884 944446203 121506669 775381437 904752936 461714634 984366000 68637834 580800861 664277760 345168972 890854497 805571730 634766913 862488558 534920562 754157754 732850245 947289483 914945211 302935860 512034120 403961004 415859499 192602250 993977640 479653371 991...

output:

assessee

result:

ok single line: 'assessee'

Test #12:

score: 100
Accepted
time: 1ms
memory: 3492kb

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:

400
565954838 703119428 434750957 947418209 500451893 432816758 983834675 516443561 107769320 461896784 691397675 710799875 189457550 875717549 516522293 694236320 375345746 230124518 587803292 759923918 66949856 270472157 962488205 788774093 34807625 729104444 873138374 823598018 916024364 42626491...

input:

Eva
204
565954838 703119428 434750957 947418209 432816758 516443561 710799875 189457550 375345746 230124518 587803292 759923918 66949856 270472157 873138374 823598018 916024364 720717110 659499200 354337829 926738450 209456990 264100296 867615906 959988792 85193598 247561014 325950843 108398478 8797...

output:

impatient

result:

ok single line: 'impatient'

Test #13:

score: 100
Accepted
time: 1ms
memory: 3520kb

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:

358
971377381 273152656 188051545 193947589 801862039 626584789 338020534 411790177 433048708 964502695 743038786 956536480 848372077 799099615 243263629 59453110 620969194 413329771 939569032 765629443 731330560 217421078 701858885 915576899 596277545 138559532 838845005 565840958 389013881 9435461...

input:

Eva
167
971377381 801862039 626584789 338020534 411790177 743038786 799099615 59453110 939569032 765629443 701858885 596277545 318246584 702291533 572614259 388997600 75044813 27081095 328545098 397582289 880418915 472474025 282636809 965297276 513798983 569406644 456029918 882575405 397392641 46527...

output:

bookkeeper

result:

ok single line: 'bookkeeper'

Test #14:

score: 100
Accepted
time: 1ms
memory: 3604kb

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:

341
663145652 55224965 714916559 372912932 373318418 147603953 29296622 748177535 248714093 157870001 86049380 272181656 860442266 651932525 763025537 556979519 427653002 502988969 345660212 786452114 372912311 615923543 716845871 80072984 38184023 693471350 182136602 1653293 969954806 564009698 548...

input:

Eva
161
663145652 372912932 147603953 748177535 272181656 860442266 556979519 427653002 345660212 182136602 1653293 969954806 548663627 118180244 623066447 823770311 486756851 494118563 232024055 375216746 167755793 894294230 578550722 417368093 118485113 459499622 56832044 433468868 185345186 18883...

output:

copyrighted

result:

ok single line: 'copyrighted'

Test #15:

score: 100
Accepted
time: 1ms
memory: 3532kb

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:

346
193333788 938174688 19472364 98516538 495529236 106681851 12079845 499079115 931127499 317126871 286970976 776459079 284562441 87266529 12340017 243305820 739335618 650602251 126094554 470890764 229426443 130699753 274965316 663328726 187325719 152435131 593850787 840264991 307309129 753234676 9...

input:

Eva
172
193333788 19472364 98516538 495529236 499079115 931127499 286970976 12340017 739335618 650602251 126094554 229426443 274965316 663328726 152435131 593850787 307309129 753234676 88666720 193441867 986917057 717519751 165218713 6561691 653992018 488423675 895703663 68097179 42415103 457594778 ...

output:

squeezeboxes

result:

ok single line: 'squeezeboxes'

Test #16:

score: 100
Accepted
time: 1ms
memory: 3596kb

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:

364
964476670 747463522 762511270 625716526 435738370 97991401 636860965 153310243 889027573 437326402 397200892 647655430 861063106 998652811 82807519 272421283 666709627 829672987 525925849 278086936 752776015 228298828 821719327 736638925 129402904 444040519 879226735 668864289 52007682 952636341...

input:

Eva
186
964476670 747463522 625716526 435738370 97991401 636860965 889027573 647655430 861063106 272421283 666709627 228298828 52007682 327719262 218406576 65033238 19729722 601735404 356361888 720862536 123213610 648625159 925324318 831279268 469106560 494191936 628637572 336085147 626903227 126497...

output:

embarrassment

result:

ok single line: 'embarrassment'

Test #17:

score: 100
Accepted
time: 1ms
memory: 3496kb

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:

364
970248515 741288488 973597730 844515671 971606966 230292941 760005644 733487378 430305377 416507918 897850337 78976301 423888044 755748041 323341232 842309825 891737159 645216548 27191111 85832681 522899150 578297885 224553740 775168547 752480663 902497361 299869641 139939515 17149914 791094276 ...

input:

Eva
178
970248515 741288488 973597730 844515671 760005644 733487378 897850337 423888044 323341232 645216548 522899150 578297885 775168547 752480663 299869641 322318359 312260049 740760984 19067751 484491483 479642040 108097958 103803716 392602736 993042911 610312997 442589537 42230486 309960596 8142...

output:

facelessnesses

result:

ok single line: 'facelessnesses'

Test #18:

score: 100
Accepted
time: 0ms
memory: 3592kb

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:

372
156497495 263178383 154300235 591652418 184501517 94611308 841599113 263642486 738284531 372775676 556674377 398428457 623432552 786798428 182945885 452947586 537720890 705367751 796020926 602262689 851342873 829764131 590710856 512484323 732305336 515991569 243485267 786193529 570442847 7455398...

input:

Eva
172
156497495 263178383 94611308 841599113 263642486 738284531 623432552 786798428 796020926 851342873 512484323 732305336 515991569 243485267 786193529 74553989 615790859 604427315 600821492 546329066 434079698 890580254 717390401 663456956 723577208 996599156 410969183 954054528 492252549 6788...

output:

oxyphenbutazone

result:

ok single line: 'oxyphenbutazone'

Test #19:

score: 100
Accepted
time: 0ms
memory: 3532kb

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:

360
55151894 143597900 893791172 769439891 383710682 547590908 672084128 172095914 7606217 825346415 916885703 207536087 584857280 827380190 693226748 307703441 40009538 841598849 157409453 382652552 440085359 766506152 285314771 210377668 488788006 33188305 356880046 558468634 908745142 513837580 7...

input:

Eva
178
143597900 383710682 672084128 7606217 916885703 584857280 827380190 693226748 307703441 40009538 157409453 382652552 440085359 210377668 488788006 33188305 513837580 794133652 9699358 101180029 183450433 284685043 829286437 992136694 492923191 140819620 675530158 288245641 905913128 38716674...

output:

uncopyrightable

result:

ok single line: 'uncopyrightable'

Test #20:

score: 100
Accepted
time: 1ms
memory: 3556kb

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:

362
758389557 27688098 720696693 125473161 447485286 900471171 217523046 258176568 753182418 725063133 926205816 474854484 933135636 794217234 684980580 501488202 74515116 492376512 124508586 767535186 448554648 947592759 953898852 851472138 529546872 262167708 182236044 257157453 607555164 72142248...

input:

Eva
179
720696693 900471171 753182418 725063133 474854484 74515116 448554648 953898852 529546872 262167708 182236044 72142248 171987277 45730849 732292033 230916208 651711937 800532724 357057832 519324025 892284367 396267286 884990587 465874285 615079633 916581775 463612169 544527308 278077862 72872...

output:

decommissioning

result:

ok single line: 'decommissioning'

Test #21:

score: 100
Accepted
time: 1ms
memory: 3536kb

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:

370
616488013 289705312 335356291 205670269 872214922 397616671 533774782 866186281 12634012 886425670 485996257 116988715 877038445 36152065 411937417 474353290 877248775 822158407 615661327 285966676 518329621 366482701 195953077 411164729 535522895 668641265 913466114 956478194 482506829 76840097...

input:

Eva
171
335356291 205670269 872214922 533774782 12634012 886425670 36152065 474353290 877248775 535522895 668641265 913466114 956478194 768400973 286946801 585692189 551003242 255787645 132189502 45199579 993552088 45038794 729241447 436204372 788460240 680420442 98594850 792141204 974337960 9662783...

output:

kindheartedness

result:

ok single line: 'kindheartedness'

Test #22:

score: 100
Accepted
time: 1ms
memory: 3528kb

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:

382
210304782 431101170 469278711 411274044 979976934 289861632 54920322 790481349 119220687 738558351 684888966 968193594 705420333 293761107 152986563 223583220 835937010 428935851 812743929 515521341 326645799 502069470 319467687 362694957 140172540 459668400 422137131 316787856 298894443 2088716...

input:

Eva
201
210304782 979976934 289861632 54920322 119220687 684888966 968193594 293761107 223583220 812743929 326645799 319467687 140172540 298894443 208871691 204333963 514480317 917252385 19376700 544630785 726352881 75265739 468687734 892507571 583224488 923649938 491368139 191136347 268591868 26604...

output:

appropriateness

result:

ok single line: 'appropriateness'