QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#297692#4827. Message Made of NoisefxhdAC ✓1ms3848kbC++171.2kb2024-01-04 23:08:262024-01-04 23:08:27

Judging History

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

  • [2024-01-04 23:08:27]
  • 评测
  • 测评结果:AC
  • 用时:1ms
  • 内存:3848kb
  • [2024-01-04 23:08:26]
  • 提交

answer

#include <bits/stdc++.h>

using namespace std;

#ifdef DEBUG
  #include "debug.hpp"
#else
  #define dbg(...) 0
#endif

const int K = 15 * 26;

int main() {
  ios_base::sync_with_stdio(false);
  cin.tie(NULL);
  string s;
  cin >> s;
  if (s == "Alisa") {
    string word;
    cin >> word;
    int len = word.size();
    vector<bool> is_good (K, false);
    for (int i = 0; i < len; ++i) {
      is_good[i * 26 + word[i] - 'a'] = true;
    }
    int n;
    cin >> n;
    vector<int> a(n);
    for (int i = 0; i < n; ++i) {
      cin >> a[i];
    }
    vector<int> ans;
    for (int i = 0; i < n; ++i) {
      if (is_good[a[i] % K]) {
        ans.push_back(a[i]);
      }
    }
    int m = ans.size();
    cout << m << '\n' ;
    for (int i = 0; i < m; ++i) {
      if (i > 0) cout << ' ';
      cout << ans[i];
    }
    cout << '\n';
  }
  else {
    assert(s == "Eva");
    int m;
    cin >> m;
    string ans(16, '?');
    for (int i = 0; i < m; ++i) {
      int x;
      cin >> x;
      x %= K;
      ans[x / 26] = 'a' + x % 26;
    }
    int len = 0;
    while (ans[len] != '?') len++;
    ans.resize(len);
    cout << ans << '\n';
  }
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

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

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:

151
395797074 767137428 50874815 967623654 12372011 189902015 89675838 949999535 737624568 120284304 204578885 843682751 322620498 403714464 98412641 577067904 640457238 685495252 173018861 209586095 594140081 779225574 299871052 351112805 378538775 502589508 326750242 471396161 444304432 585503932 ...

input:

Eva
80
395797074 767137428 12372011 189902015 89675838 204578885 577067904 209586095 594140081 779225574 299871052 471396161 444304432 809898978 347012658 442481951 628854054 84115642 136582385 94785695 193557114 60804624 448254708 738755274 517113965 878032368 444346151 534704838 413678184 52568335...

output:

spark

result:

ok single line: 'spark'

Test #2:

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

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:

70
937120495 747706506 23605596 324375115 976138086 873499810 929212855 372628296 428148265 717944395 812194566 767472070 781999945 280507915 977701945 5545866 585562420 32790445 315613416 455859340 445720536 480368890 754617265 956533150 136343650 836396380 248949130 905860866 310195885 612278200 7...

input:

Eva
34
747706506 23605596 976138086 929212855 428148265 812194566 767472070 5545866 32790445 315613416 455859340 480368890 136343650 905860866 612278200 71670366 362999155 98577610 922882416 495048490 757990780 503895250 590588350 555187255 904882720 8221240 153937330 696387145 417692770 488641165 7...

output:

zoo

result:

ok single line: 'zoo'

Test #3:

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

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:

52
218785710 744405525 753149325 598600470 955108050 724855560 769132260 67291380 480451140 173590995 652615905 902680395 451236675 401152485 488106885 356298585 826229085 949966290 461707005 2180535 398290230 816595650 621480210 44860965 525654090 728140920 897258225 88022610 157272960 859724970 53...

input:

Eva
29
218785710 753149325 598600470 955108050 724855560 769132260 67291380 902680395 451236675 826229085 461707005 2180535 525654090 728140920 897258225 88022610 157272960 989774370 851323590 51967110 614921970 461656650 640202595 474247455 689905710 624720765 532536030 353864985 926009805 

output:

at

result:

ok single line: 'at'

Test #4:

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

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:

55
75614401 690299251 124684958 390374821 117404438 169862168 633574508 114094898 395780198 748692781 120266258 124041068 256249141 474449438 161185861 863178451 286489718 583875248 239515411 138143491 121860578 158877038 115975891 479005051 347790308 623852611 701900191 290173291 20593591 345241291...

input:

Eva
29
75614401 117404438 114094898 395780198 120266258 124041068 474449438 161185861 286489718 239515411 138143491 121860578 115975891 347790308 701900191 345241291 4140638 814568851 869794778 792998341 502097341 377380021 800820961 690948968 507629101 173528191 116890028 807886591 789289051 

output:

if

result:

ok single line: 'if'

Test #5:

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

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:

63
760601014 240796983 711883800 810687213 45336393 408194674 420638014 904393234 477337774 155539050 981761824 675793980 950823514 464433123 669979080 288412083 68964484 369250054 424509603 412795140 508001973 816100770 296587984 124499340 486228630 383604810 921116044 626024884 837182194 190557514...

input:

Eva
34
760601014 810687213 408194674 420638014 477337774 981761824 675793980 950823514 464433123 68964484 369250054 424509603 816100770 124499340 486228630 921116044 190557514 581030194 316800183 51692944 657082983 547393500 522169470 734149654 823961584 13298283 558138423 356150734 702774570 666262...

output:

eel

result:

ok single line: 'eel'

Test #6:

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

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:

77
82538846 552116051 411226532 183287522 211565252 592621451 360303086 301946606 273789041 527363141 424827782 795898766 605457521 906624101 596655932 937512422 915656456 294118181 744618101 362402891 416635076 445471676 145965302 522516542 733064672 228641036 418843232 845961872 776693651 14927296...

input:

Eva
38
82538846 183287522 211565252 592621451 273789041 527363141 795898766 605457521 744618101 362402891 445471676 522516542 733064672 228641036 776693651 149272961 258142196 463357832 114493151 296848112 795364511 82385942 870967571 471549782 834718952 129741761 928988261 454061471 956436416 93961...

output:

cat

result:

ok single line: 'cat'

Test #7:

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

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:

97
317144579 32002650 89078782 121408187 89600602 886407262 791400120 643264919 801894262 229610970 361145159 184490700 652540289 664092442 82808340 367256790 6246292 37150709 789677902 234147047 156615840 273415439 371811232 3908987 565035562 765180832 871807649 5166360 129522952 585067949 81830078...

input:

Eva
49
32002650 121408187 89600602 643264919 801894262 229610970 361145159 184490700 652540289 664092442 82808340 37150709 234147047 156615840 273415439 565035562 765180832 871807649 5166360 129522952 585067949 433142597 629030272 982108560 203807069 326401229 57625282 278876940 161434667 970700657 ...

output:

real

result:

ok single line: 'real'

Test #8:

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

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:

138
274780058 573830446 923988046 426984198 846372556 456745826 564786706 900386858 614641576 821732448 903403508 381541346 542844608 803984718 924019688 171898016 620406206 670270088 662129576 243428656 993315196 7867906 118392788 573387016 475279838 24867226 870273408 139688686 825679238 690385128...

input:

Eva
68
274780058 564786706 900386858 903403508 381541346 924019688 670270088 662129576 7867906 118392788 573387016 475279838 870273408 139688686 259810688 534578476 328502568 888361988 849144368 113526716 513881596 614714988 946046118 705051468 180617678 189838838 800556566 518052308 867608056 39196...

output:

queue

result:

ok single line: 'queue'

Test #9:

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

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:

148
293695031 957087007 457096133 440611177 164040280 322560517 43879823 870392290 654934918 264765542 529613467 226211843 513073541 94199432 180843040 625790140 665400100 229694497 5565761 895007530 215845597 934437310 672127172 655334980 742448852 253262243 776960848 709229470 923787658 189457853 ...

input:

Eva
70
293695031 957087007 457096133 440611177 322560517 870392290 529613467 226211843 513073541 180843040 665400100 229694497 215845597 672127172 655334980 776960848 923787658 189457853 907832711 284904088 138403343 684901691 724714133 427664783 439178612 822853630 986337730 220537592 649288523 667...

output:

cotton

result:

ok single line: 'cotton'

Test #10:

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

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:

174
801475792 30639688 945685675 601563864 388943579 901667545 91167659 922311832 836485680 393432954 602641290 212247510 58556190 265591649 706348140 881278740 157829998 39033175 105842608 225763642 329725618 623029315 267045654 803085420 585069840 779575854 494383199 846964585 221406150 431963784 ...

input:

Eva
83
945685675 601563864 91167659 393432954 58556190 706348140 881278740 39033175 329725618 623029315 267045654 585069840 431963784 171210442 971570904 262930230 913872720 958685155 749178060 725772892 344608769 766871519 184978590 647002252 680604652 840170130 8710800 124702915 861657840 69953720...

output:

zealous

result:

ok single line: 'zealous'

Test #11:

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

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:

181
313117394 814317782 28882390 600654292 72233972 863506800 169029580 467773454 73115710 67775452 136849198 511477712 138328858 50909942 380430328 407227470 746776060 796673830 444144870 639586740 639246418 335226610 728183820 372950908 184816858 710912050 69615928 775282720 512034120 146120706 36...

input:

Eva
97
313117394 814317782 28882390 600654292 863506800 467773454 73115710 138328858 796673830 444144870 639586740 639246418 728183820 184816858 69615928 146120706 682532920 785687440 419776180 442250398 847235368 861555700 135990040 675010172 101298332 570692152 100688320 512193752 560758918 614381...

output:

assessee

result:

ok single line: 'assessee'

Test #12:

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

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:

263
430249178 164631128 562993508 38269335 999154298 946592560 88371738 241626528 190997553 569195087 946683337 187872368 244197525 915579638 978897727 968016003 185317868 619931977 904420335 884024505 67219658 653468913 177443058 592143318 63771010 291577877 200221157 223921457 790228148 938380787 ...

input:

Eva
139
430249178 164631128 562993508 999154298 946592560 569195087 946683337 187872368 968016003 185317868 904420335 67219658 653468913 592143318 291577877 200221157 223921457 790228148 899331615 472818287 935972927 243867617 977869238 608547615 927502758 589778318 351564078 610004888 383207437 346...

output:

impatient

result:

ok single line: 'impatient'

Test #13:

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

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:

241
320950361 851051046 253681074 772328766 981941260 453562334 825870696 602581981 982110250 881112658 678128297 656191514 601743910 271657000 355790826 513911441 565943980 544100522 507062878 55006577 808132374 779150971 105870268 909487450 4088114 417572260 988592882 311592584 895361286 145804780...

input:

Eva
128
851051046 253681074 772328766 453562334 602581981 982110250 881112658 601743910 271657000 355790826 565943980 55006577 808132374 779150971 105870268 4088114 417572260 988592882 311592584 430518404 266802280 330838210 899579938 702194308 100329490 954395381 886955411 235696956 596607294 69557...

output:

bookkeeper

result:

ok single line: 'bookkeeper'

Test #14:

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

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:

289
165070809 786885062 372912932 444802122 151829442 147603953 659150431 386015243 588632562 82349401 667774810 725135582 818528238 901746489 518136127 997640908 590403323 444034502 711683109 600342838 566231388 651852113 968446578 165991637 331977462 241234727 918486001 721214560 517663420 6767047...

input:

Eva
137
786885062 444802122 151829442 147603953 659150431 588632562 667774810 725135582 590403323 651852113 241234727 494118563 399838651 396136888 979030717 817041972 12814332 80327560 230613732 17682602 208322237 153253351 34795412 348011432 301568347 478171240 180783909 561830327 628075689 826550...

output:

copyrighted

result:

ok single line: 'copyrighted'

Test #15:

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

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:

318
963575422 556159804 393973728 697838782 386484310 977243927 638965162 286633000 191838430 771315562 720501857 444555232 120888557 618049247 413372382 363623352 834751728 359484707 375999963 931402008 368130125 177075252 547988524 761794983 748988982 907954392 818894184 827540087 359599414 254720...

input:

Eva
169
556159804 697838782 386484310 286633000 444555232 120888557 413372382 834751728 359484707 375999963 931402008 547988524 761794983 748988982 818894184 827540087 359599414 900156288 636289547 571717398 253466643 559418562 421060098 390559810 18415714 349351122 637548514 35384382 825686464 3613...

output:

squeezeboxes

result:

ok single line: 'squeezeboxes'

Test #16:

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

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:

339
762857993 845272550 387788388 350957528 929336724 904788811 589233138 160465188 623485356 59265998 200670456 881973846 208267804 614011051 956061151 933585267 707125384 502539036 563231616 90425256 488373066 117586988 467062250 682770323 360692333 707813956 999056244 181805558 31448694 733573561...

input:

Eva
170
762857993 387788388 350957528 589233138 160465188 59265998 200670456 208267804 956061151 933585267 707125384 90425256 117586988 682770323 360692333 999056244 733573561 304825564 332830554 867604861 732200118 638094366 403959959 131669074 297608 202088406 292635773 641461696 988432626 6666116...

output:

embarrassment

result:

ok single line: 'embarrassment'

Test #17:

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

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:

360
741288488 971606966 55272414 728210084 582738954 799425436 681178034 638960905 970853446 16264408 175620954 821347492 349446024 195049418 44025856 808028368 877358344 650751236 728170760 769364921 312138766 55888285 835136944 272095556 17149914 567989284 600511085 987762494 343607945 193851114 7...

input:

Eva
169
741288488 728210084 582738954 799425436 970853446 821347492 195049418 877358344 835136944 567989284 600511085 343607945 193851114 98096900 354669086 995958878 912537384 183171415 214805396 240903395 388451276 20599584 829127876 687361134 819558264 276109162 21114526 773523158 910965826 23180...

output:

facelessnesses

result:

ok single line: 'facelessnesses'

Test #18:

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

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:

370
267787878 298980033 390756734 302663449 546046969 535912586 145743169 741746594 931574853 716357899 134882059 729425691 673475414 965909539 158485484 539238896 384048131 211318863 942124131 293980941 760565223 85803524 291644318 901546669 821059334 609815749 334837731 222743523 661221853 6746820...

input:

Eva
184
267787878 298980033 302663449 535912586 145743169 741746594 134882059 942124131 293980941 760565223 85803524 291644318 901546669 334837731 222743523 661221853 427459966 681473264 3453194 720305541 116307436 795518036 151541390 972394189 941532261 267101751 312198380 903054081 759621168 64954...

output:

oxyphenbutazone

result:

ok single line: 'oxyphenbutazone'

Test #19:

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

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:

379
807704159 475634989 893791172 208812784 433954456 111473720 784346528 983077268 683350763 303676208 89721250 772571593 713008584 584857280 166070380 140550594 47574659 853570358 757785654 605351799 495149650 602245973 139259074 454456952 157780504 923392819 744555064 490636943 306516654 90102436...

input:

Eva
191
893791172 303676208 89721250 713008584 166070380 140550594 757785654 605351799 602245973 139259074 157780504 490636943 306516654 610847794 525972484 569102079 97641103 399123121 200412203 567851589 723413626 421250500 921357860 944504971 832225179 48652088 828080134 482746700 156403891 87091...

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:

375
614990250 430297772 623013599 865196260 178529819 988803980 528985612 842613884 121351114 972975394 30425124 491379360 439947303 287540596 870173162 670361180 270028941 140175390 482297210 683308400 137779109 135464190 488144990 375671751 634900616 243319582 495866054 841048876 705152669 7575841...

input:

Eva
194
614990250 430297772 865196260 178529819 988803980 528985612 842613884 30425124 439947303 870173162 270028941 140175390 482297210 634900616 841048876 705152669 24703232 933154590 839298884 197672372 112878290 557129546 275165506 361402769 860538954 134560101 489871130 747470789 411784430 2269...

output:

decommissioning

result:

ok single line: 'decommissioning'

Test #21:

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

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:

407
685632155 948580685 398910712 583253063 241612176 980693644 742175842 352137893 345483874 201979115 945110020 652068953 975335556 418448476 385191365 918037997 401693045 225536909 48401061 576260789 590429116 285422290 482433981 416381560 700762439 748928183 464914086 102993940 467234267 2542732...

input:

Eva
197
685632155 948580685 583253063 980693644 345483874 201979115 945110020 652068953 418448476 385191365 48401061 590429116 285422290 748928183 102993940 467234267 254273218 161279511 897166066 7704832 557874322 422795092 478856541 739815681 254933242 25791082 506547827 658572256 550247234 696410...

output:

kindheartedness

result:

ok single line: 'kindheartedness'

Test #22:

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

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:

383
474554266 48564115 825470066 790036795 381122786 384296549 694348166 439970110 127897135 761784270 759925330 858797695 688400428 495128263 242327488 700117769 600669877 968193594 810814408 217680205 61505266 652594319 820057888 584701043 126621943 561661976 130350625 52714224 734170900 493367368...

input:

Eva
182
790036795 381122786 694348166 439970110 127897135 242327488 700117769 600669877 968193594 810814408 217680205 652594319 820057888 561661976 617141968 340407916 11662486 999012367 202386641 616057355 622292506 134016911 434177848 974032273 852487781 417113398 895031154 334517729 989203663 589...

output:

appropriateness

result:

ok single line: 'appropriateness'