QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#295729#4827. Message Made of Noiseucup-team2307#AC ✓1ms3564kbC++201.3kb2023-12-31 20:07:542023-12-31 20:07:55

Judging History

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

  • [2023-12-31 20:07:55]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:3564kb
  • [2023-12-31 20:07:54]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;

using ll = long long;
//#define int ll
#define rep(i, a, b) for(int i = a; i < (b); ++i)
#define all(x) begin(x), end(x)
#define sz(x) (int)(x).size()
using pii = pair<int, int>;
using vi = vector<int>;
#define fi first
#define se second
#define pb push_back

const int DIV=1e9/27;

int find(int x)
{
    while(true)
    {
        int y;
        cin>>y;
        if(y/DIV==x)
            return y;
    }
}

void alisa()
{
    string word;
    cin>>word;
    int n;
    cin>>n;
    vector<int> v;
    int prv=-1;
    for(char c:word) {
        int cur=c-'a';
        if(cur==prv)
            v.push_back(26);
        v.push_back(cur);
        prv=cur;
    }
    int times=n/v.size()/40;
    cout<<v.size()*times<<"\n";
    for(int x:v)
        for(int i=0;i<times;i++)
            cout<<find(x)<<" ";
}

void eva()
{
    int k;
    cin>>k;
    vector<int> v;
    while(k--)
    {
        int cur;
        cin>>cur;
        cur/=DIV;
        if(v.empty()||v.back()!=cur)
            v.push_back(cur);
    }
    for(int x:v)
        if(x!=26)
            cout<<char('a'+x);
}

signed main() {
	cin.tie(0)->sync_with_stdio(0);
	cin.exceptions(cin.failbit);

    string name;
    cin>>name;
    if(name=="Alisa")
        alisa();
    else
        eva();
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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:

250
686146291 690314963 698745720 695250237 690562340 686271886 699207528 675395271 675013896 699130696 699381889 695413273 686444130 680941924 690197907 692779301 670323675 699480440 702553600 688939960 702192691 677966933 670880683 682117526 694507472 691486180 668555522 685604335 685627335 682319...

input:

Eva
108
698745720 695250237 690562340 675395271 699130696 686444130 670323675 702192691 677966933 670880683 694507472 691486180 685604335 685627335 682319224 684679016 690171286 674982483 687810002 696993307 688472490 696393470 670093385 682321535 676178952 692511428 586686020 558073688 567696343 56...

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:

248
956754604 949712722 942558913 959067023 957931518 937120495 941096860 930104613 962297218 926411849 928858491 961568932 935296162 941768431 940947544 930682477 934025944 947925294 945000023 934283189 956507810 932435650 958098943 934489194 941134793 944640431 936035071 962141505 941404220 960605...

input:

Eva
140
949712722 942558913 959067023 957931518 930104613 962297218 926411849 961568932 935296162 940947544 934025944 945000023 934283189 932435650 958098943 934489194 944640431 941404220 934645497 949018122 950679612 952416567 945468648 927965594 934747854 950157874 931582459 947874075 953520433 96...

output:

zoo

result:

ok single line: 'zoo'

Test #3:

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

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:

250
18321048 4513443 13431849 16194434 992833 31860545 20137927 28792614 9755554 29075895 16805796 4489963 23729859 14201241 21434663 1578632 20938216 28188308 34776035 27034606 21575810 959707 2861161 26739301 17323577 3621121 9804385 15540107 25073224 36095084 23320685 32109270 6494029 2034159 117...

input:

Eva
120
18321048 16194434 992833 31860545 20137927 28792614 9755554 4489963 23729859 14201241 21434663 1578632 2861161 26739301 9804385 36095084 23320685 6494029 2034159 117411 27452772 15372107 10358511 28027353 8730711 871582 21037269 29065977 1111930 15916137 29912615 11080600 13716833 33159633 3...

output:

at

result:

ok single line: 'at'

Test #4:

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

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:

250
319759251 301190466 306220272 303526404 317199787 321906115 333234923 331475501 321187465 307957323 298153365 296638144 325594166 331573192 329827135 325085426 331941461 312232576 332403588 332823575 315626788 297111328 300620112 330288288 300569329 322603673 307175299 312787219 317747130 321885...

input:

Eva
124
319759251 301190466 306220272 317199787 333234923 325594166 331573192 329827135 325085426 331941461 312232576 332403588 332823575 315626788 330288288 300569329 322603673 307175299 317747130 317960750 308997881 313460113 308916274 312885981 314473805 317021949 328837254 303607043 318790617 30...

output:

if

result:

ok single line: 'if'

Test #5:

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

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:

248
151667551 160855644 173214751 175408665 184961737 163473519 165574825 161725328 164155563 180350520 159995991 158053749 155973073 154859296 183819000 170861303 157196614 177583885 162635425 156087214 151792897 163994829 148967369 178003522 184933706 153696388 156075595 182907136 156033187 183424...

input:

Eva
125
173214751 161725328 164155563 159995991 158053749 155973073 154859296 183819000 162635425 156087214 151792897 148967369 184933706 156033187 183424086 168470339 155503069 183655124 151758303 185108487 184732204 149950405 155539050 182999857 173861692 150401280 183693164 160128368 176513362 17...

output:

eel

result:

ok single line: 'eel'

Test #6:

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

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:

249
82538846 79396446 78337903 86882303 82759757 105910396 103360374 88169463 105812968 88373651 95003051 88201872 91642425 89177690 77997574 77404346 100486183 82956114 99112022 100493151 100794173 75617106 109364296 104502757 92278779 106855576 81573871 85749120 108068503 104725533 87022677 822304...

input:

Eva
123
86882303 82759757 103360374 88169463 88373651 95003051 88201872 91642425 77997574 77404346 100493151 109364296 104502757 92278779 81573871 85749120 104725533 82230430 88406621 93944292 103345364 107250453 74941046 84730145 110219915 74714505 97871228 98468353 103848123 108348338 103106412 11...

output:

cat

result:

ok single line: 'cat'

Test #7:

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

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:

248
632028874 664696652 651680084 648888316 646021888 659180702 649312024 631714387 640952392 637048396 662467248 664276978 647648143 644991312 649675922 642326626 652998694 634360099 642785131 666497240 638308103 640014128 654499345 647342454 655737712 630090798 662199253 643264919 634461726 630023...

input:

Eva
133
651680084 646021888 631714387 637048396 662467248 664276978 647648143 649675922 666497240 638308103 654499345 655737712 630090798 630023165 642860226 658381757 643735055 658650775 664092442 639231282 645189388 654536754 651592555 634842438 638545396 655350687 651329797 645727570 666617149 64...

output:

real

result:

ok single line: 'real'

Test #8:

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

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:

250
623612034 624302126 627459657 603491978 601092052 600165280 622416691 620242340 597895650 618336656 593247624 622556354 622271255 614141086 627327266 608043889 603295638 600355630 623665914 606878957 611515789 601245690 602290137 598352009 607825934 622356813 610175139 599464773 605053861 619956...

input:

Eva
127
623612034 603491978 601092052 597895650 618336656 593247624 622556354 622271255 600355630 623665914 606878957 601245690 607825934 610175139 599464773 619956073 596922863 605205413 593781976 593813037 612878691 609704748 619433535 615065192 629294872 613752142 618683385 627656651 628475593 60...

output:

queue

result:

ok single line: 'queue'

Test #9:

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

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:

245
85622307 84821562 80178097 83355949 81853112 102853398 75709465 75924356 82580353 110479652 103060998 91615091 111061916 104228989 90784508 96951841 103887708 100919813 104295775 88825640 99688206 86826850 80745596 74543593 106445973 77212807 81114281 75832953 76907249 101665535 107953932 941994...

input:

Eva
135
83355949 81853112 82580353 103060998 91615091 104228989 90784508 96951841 103887708 100919813 88825640 80745596 106445973 77212807 81114281 101665535 107953932 94199432 85215381 542466689 535355098 540761059 519331362 524980984 530794023 554047553 550627123 540254471 539127229 544744915 5494...

output:

cotton

result:

ok single line: 'cotton'

Test #10:

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

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:

245
941228977 958060440 945696656 936192876 935519778 945685675 947623527 934847021 955570142 951004046 936277035 957278951 954665411 925964827 941130236 938573612 937159251 929369964 950946421 926456047 950491339 959957665 934579747 956837766 943102826 959421837 943138160 933722114 951223178 927762...

input:

Eva
118
958060440 947623527 955570142 936277035 957278951 929369964 950946421 926456047 950491339 959957665 943102826 959421837 933722114 951223178 928039488 180607169 179795574 156355496 177493762 172122180 179476387 166231929 172981750 156860810 162192312 181069629 183621105 176423527 149132220 16...

output:

zealous

result:

ok single line: 'zealous'

Test #11:

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

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:

242
7840279 9961946 21452918 34192160 22697125 36467192 28287969 17190525 27634228 28882390 12202297 34173247 25459705 33802815 33218724 13343814 14776763 27019813 20346594 29310377 19923110 34983798 682609761 680258372 685704684 684755491 676034491 694983117 674188875 687711430 680938052 671056915 ...

input:

Eva
124
9961946 21452918 22697125 36467192 28287969 27634228 12202297 33802815 33218724 13343814 14776763 27019813 20346594 34983798 682609761 685704684 680938052 671056915 672054693 694129629 671879229 668261375 669294565 675668470 674637272 684762828 977559604 987593918 963102585 975401397 9887807...

output:

assessee

result:

ok single line: 'assessee'

Test #12:

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

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:

243
324152699 302386475 311527633 316129494 316675086 315339350 327888220 322565636 303150484 332497814 304966112 302180678 315578345 318386314 332904393 304983297 325257681 297534709 302264131 314202505 303588242 319558745 300014469 309698899 329358172 309099669 316359556 461550466 455340304 457163...

input:

Eva
113
302386475 316129494 316675086 315339350 322565636 304966112 304983297 325257681 303588242 300014469 309698899 329358172 309099669 316359556 461550466 457163164 472941413 475817549 460996455 449486500 446655443 475813755 454532650 472876875 465220814 456357391 461465103 465528067 574113976 58...

output:

impatient

result:

ok single line: 'impatient'

Test #13:

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

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:

247
40387453 44285363 55798831 50958660 46235534 66059394 70662814 66176837 61753180 52142382 66837884 64427091 63934780 59126849 40969373 72012687 55955305 73309061 65832774 543838484 534213453 538757774 550847069 555353093 532443521 531734129 541284259 523022370 521991437 538076519 547367740 53211...

input:

Eva
131
40387453 44285363 50958660 66059394 70662814 66176837 64427091 40969373 72012687 55955305 543838484 538757774 550847069 555353093 532443521 541284259 523022370 521991437 538076519 532115292 555259882 554736815 524406404 525446605 547827525 550839295 963342070 972218166 978946572 974340914 99...

output:

bookkeeper

result:

ok single line: 'bookkeeper'

Test #14:

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

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:

242
101206711 76847134 94605817 79369674 107246199 98313261 98139740 86049380 82349401 96020949 82513993 91740327 88722981 80072984 100005959 83986358 105771793 101187281 74331463 82603496 80309268 105947949 518701090 521735215 547953379 547187319 546690825 527134998 552922355 544606059 541649907 55...

input:

Eva
123
76847134 94605817 107246199 98139740 86049380 96020949 82513993 91740327 80072984 105771793 101187281 82603496 80309268 521735215 547953379 546690825 527134998 541649907 555318805 541642623 540933709 527326088 546453819 536359656 535717609 582008830 588386738 582070719 571990717 586296317 58...

output:

copyrighted

result:

ok single line: 'copyrighted'

Test #15:

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

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:

247
699989485 675927206 667746143 681083131 675829491 693537757 685528547 697838782 681155376 674797327 679896573 681767302 677296860 701157617 676090309 690117181 675041444 697034894 686989969 605264655 616884130 618049247 597330851 604878497 628514071 599886076 594034986 603316038 594878417 594034...

input:

Eva
110
675829491 685528547 681155376 674797327 676090309 690117181 675041444 605264655 616884130 597330851 594878417 594034917 627702740 596071126 621605731 594783388 613059226 593850787 623003385 769631819 756256722 742372127 745738923 742333744 753458823 169785160 151207497 173494391 183264838 17...

output:

squeezeboxes

result:

ok single line: 'squeezeboxes'

Test #16:

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

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:

240
149329830 157040498 170148671 184744104 154761884 153310243 160465188 165185847 157959522 181095463 184025499 176216204 180820575 160414931 153744928 151108705 466362923 468507242 467094046 468695509 474365729 467062250 469070646 478078212 473170511 455128340 447011271 458030101 448584565 459905...

input:

Eva
117
157040498 170148671 184744104 154761884 153310243 153744928 466362923 467094046 474365729 467062250 478078212 473170511 455128340 447011271 459905769 445691650 39732034 65387508 63964529 42664550 68826722 72711789 54977070 24956532 10332756 33927847 18207989 26831607 7672924 661849212 646760...

output:

embarrassment

result:

ok single line: 'embarrassment'

Test #17:

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

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:

240
204867309 214887554 210219047 220925310 203985028 220797208 221368028 214079701 202754951 200416987 204160497 206841155 211315384 209409281 196507923 20929095 27191111 16264408 13560495 32964324 26842061 16217536 11727523 13803086 33237663 13468648 27314121 17149914 5619324 10536887 107607974 11...

input:

Eva
114
203985028 202754951 200416987 204160497 206841155 209409281 32964324 26842061 16217536 13803086 33237663 17149914 10536887 107607974 110924200 88514803 100474993 88079448 92604874 108259944 98606248 98096900 169737919 149782171 167578093 175964963 170643645 183171415 162708639 418736948 4107...

output:

facelessnesses

result:

ok single line: 'facelessnesses'

Test #18:

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

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:

240
524026335 535099022 520608037 545847182 538045657 543161907 546046969 535912586 553994213 545927126 549378658 527289793 531009505 554542739 549479124 546489334 883710897 857104093 869337459 865670112 878805602 881907065 887647013 881797298 858647141 876546304 856164088 860309644 853566153 875278...

input:

Eva
115
535099022 545847182 538045657 543161907 553994213 527289793 546489334 883710897 857104093 869337459 881907065 881797298 876546304 856164088 853566153 875278896 873135845 899423785 920687867 890580254 915899478 910367074 568940210 573658385 585809701 582087404 270160566 274816346 279144741 27...

output:

oxyphenbutazone

result:

ok single line: 'oxyphenbutazone'

Test #19:

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

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:

240
763706492 750987557 773773064 769439891 747092708 746332635 764197326 760444231 772571593 769228565 769990211 744254031 744745217 750779339 749390750 758149736 499420741 507185077 495149650 500297074 512854974 485151915 489836186 490636943 491124925 488788006 495267492 507926039 508178373 500938...

input:

Eva
114
750987557 769439891 746332635 764197326 772571593 769990211 749390750 758149736 499420741 500297074 489836186 491124925 488788006 507926039 500938405 486409605 513837580 95481095 94942364 85052759 103491380 75382633 101206736 96635898 96931839 552359119 538756822 529139258 524961067 54744050...

output:

uncopyrightable

result:

ok single line: 'uncopyrightable'

Test #20:

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

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:

238
125473161 118462583 128556429 145157941 114543570 117262239 114481955 111135347 139653783 136807870 142697640 132475768 122831734 124508586 150922973 156324600 182236044 177016299 168005098 171987277 178045861 160825705 172386764 166286305 182714608 162858009 179645799 161575504 103415511 757323...

input:

Eva
127
125473161 118462583 145157941 114481955 136807870 150922973 168005098 171987277 160825705 172386764 179645799 75732365 96888736 98307794 106734877 105098024 74935201 80956956 79022453 533717159 528424406 523430330 547822706 546624083 524273273 544132330 524415009 550667923 445619735 45210146...

output:

decommissioning

result:

ok single line: 'decommissioning'

Test #21:

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

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:

240
393936792 398910712 402780935 375849383 392241606 398812381 394584923 377442470 398617058 388763820 397616671 378290053 400800383 396405032 395902433 326463631 320264873 313197268 296671741 330393975 313126261 308124940 305575808 330168028 306931478 331070825 307381022 320345932 311139209 320687...

input:

Eva
107
393936792 402780935 375849383 388763820 378290053 396405032 395902433 313126261 330168028 320345932 320687437 483201202 482313175 494541891 508543925 497499714 491040232 486943577 483715034 484358980 513915330 141067791 132940360 272448297 262124237 281871248 261729302 274914318 269279012 26...

output:

kindheartedness

result:

ok single line: 'kindheartedness'

Test #22:

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

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:

238
32347115 14352941 25735227 27073407 7057526 26802186 33064491 34603843 13909296 23368471 27030169 36047274 22705987 23143161 557326167 581414137 590489075 560140932 585343920 564909833 584701043 581415956 561661976 582844118 562148233 561937888 563613256 560954186 987374916 963783909 998363365 9...

input:

Eva
123
14352941 27073407 27030169 36047274 22705987 557326167 581414137 590489075 581415956 561661976 562148233 561937888 987374916 963783909 998363365 998660258 988476118 995876610 980598433 997586099 988225714 971756747 559710574 560250877 559864662 569004964 588696008 567106586 573608900 5882327...

output:

appropriateness

result:

ok single line: 'appropriateness'