QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#851001 | #4827. Message Made of Noise | thanhs | AC ✓ | 1ms | 3844kb | C++23 | 1.9kb | 2025-01-10 14:15:26 | 2025-01-10 14:15:28 |
Judging History
answer
#include <bits/stdc++.h>
using namespace std;
#define name "TENBAI"
#define fi first
#define se second
#define int long long
#define endl '\n'
#define setmin(x, y) x = min((x), (y))
#define setmax(x, y) x = max((x), (y))
#define sqr(x) ((x) * (x))
mt19937 hdp(chrono::high_resolution_clock::now().time_since_epoch().count());
int rand(int l, int r){return l + ((hdp() % (r - l + 1)) + r - l + 1) % (r - l + 1);}
const int mod = 29;
int F(int x)
{
return x % mod;
}
void solve()
{
string _;
cin >> _;
if (_ == "Alisa")
{
string s, S;
cin >> s;
S += s[0];
for (int i = 1; i < s.size(); i++)
S += ' ', S += s[i];
int n;
cin >> n;
int cr = 0;
vector<int> res;
for (int i = 1; i <= n; i++)
{
int x;
cin >> x;
if (cr < S.size() && ((F(x) == 26 && S[cr] == ' ') || F(x) == S[cr] - 'a'))
{
res.push_back(x);
if (res.size() % 10 == 0)
cr++;
}
}
assert(cr == S.size());
cout << res.size() << endl;
for (int t : res)
cout << t << ' ';
}
else
{
int n;
cin >> n;
int pr = -1;
for (int i = 1; i <= n; i++)
{
int x;
cin >> x;
if (F(x) != F(pr) && F(x) < 26)
cout << char(F(x) + 'a');
pr = F(x);
}
}
}
signed main()
{
if (fopen("in.txt", "r"))
{
freopen("in.txt", "r", stdin);
freopen("out.txt", "w", stdout);
}
else if (fopen(name".inp", "r"))
{
freopen(name".inp", "r", stdin);
freopen(name".out", "w", stdout);
}
ios_base::sync_with_stdio(false); cin.tie(nullptr); cout.tie(nullptr);
int tc = 1;
// cin >> tc;
while (tc--)
solve();
}
詳細信息
Test #1:
score: 100
Accepted
time: 0ms
memory: 3840kb
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:
90 38085457 884290145 715342757 539479826 92549574 177759723 463899330 299437546 372786115 9017626 615313036 967623654 323902998 92695829 365051388 13714706 22685624 885253330 423277356 154038688 946887715 27599663 739811562 145623660 347776599 977301697 694507472 725105894 374884697 840376892 80765...
input:
Eva 38 38085457 884290145 539479826 177759723 299437546 372786115 9017626 615313036 92695829 365051388 13714706 423277356 154038688 27599663 739811562 347776599 685627335 811648459 970481749 130615649 608887506 861636223 368135944 288837245 331000200 837431405 8873939 198372728 700503340 462933281 5...
output:
spark
result:
ok single line: 'spark'
Test #2:
score: 100
Accepted
time: 1ms
memory: 3552kb
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:
50 212511213 47770507 166469421 403096284 52387307 560321205 941096860 930104613 478257672 795868543 161026035 149318648 451898442 594010419 611086953 576785405 588761390 455164103 266430827 362411953 707916955 180004493 853932825 603697596 323982852 37163456 302140052 87342707 797961143 941404220 7...
input:
Eva 29 47770507 403096284 52387307 795868543 161026035 451898442 594010419 576785405 455164103 362411953 707916955 603697596 323982852 37163456 302140052 87342707 131176596 844673224 608198669 480703562 236107006 804805039 82681346 252627859 655486637 34851518 453848477 317723405 476657064
output:
zoo
result:
ok single line: 'zoo'
Test #3:
score: 100
Accepted
time: 1ms
memory: 3624kb
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:
30 48690159 90141686 238431794 212174643 509401327 669397198 100535228 123898324 796877312 526070469 182764928 52082228 442427564 591069703 850382976 130945553 168202839 806503221 352299305 589045677 165104791 72256535 523336455 466563793 326333742 368507108 205981770 910475058 863447063 119003955
input:
Eva 12 48690159 238431794 100535228 796877312 52082228 591069703 850382976 806503221 352299305 523336455 326333742 368507108
output:
at
result:
ok single line: 'at'
Test #4:
score: 100
Accepted
time: 1ms
memory: 3680kb
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:
30 897563232 133491793 893794740 943092507 325085426 644565521 331941461 563483986 369166383 634682466 93609677 869237239 117404438 114962609 710659671 464514022 631775263 104759162 249872378 222280647 192606608 256189659 880898872 312787219 52359505 903330633 417766494 974410503 445141421 715521703
input:
Eva 12 133491793 325085426 634682466 93609677 869237239 710659671 104759162 256189659 880898872 903330633 974410503 445141421
output:
if
result:
ok single line: 'if'
Test #5:
score: 100
Accepted
time: 1ms
memory: 3680kb
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:
50 506627655 826490666 352620110 647978585 679913646 401909583 559053333 924946304 159995991 586605015 594534014 157196614 577716943 676722682 543927042 30146367 385274016 133993482 106510327 270235395 464159069 380351882 595285498 29006384 671809161 552290504 844880030 471424961 245193960 534172609...
input:
Eva 27 506627655 826490666 401909583 559053333 594534014 157196614 30146367 106510327 270235395 464159069 29006384 671809161 552290504 844880030 471424961 245193960 253188905 82244403 12682277 920142418 741076060 683499648 786458029 512765106 197280341 796278850 461971780
output:
eel
result:
ok single line: 'eel'
Test #6:
score: 100
Accepted
time: 0ms
memory: 3672kb
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:
50 281526753 255897597 257762935 868484230 543804957 8679122 117107831 507133094 857438971 482733770 299039703 330443165 317984649 552300299 511765346 604556240 277000167 933178237 157783081 527363141 66765424 492036330 44191795 107194237 74941046 570339288 490661440 426917004 539029090 547738109 17...
input:
Eva 27 281526753 257762935 8679122 117107831 507133094 857438971 299039703 552300299 511765346 527363141 66765424 107194237 426917004 539029090 179086104 823694711 463903601 958396666 839380579 224884470 442399405 728096559 54770006 753370052 338978003 248542344 409846608
output:
cat
result:
ok single line: 'cat'
Test #7:
score: 100
Accepted
time: 1ms
memory: 3616kb
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:
70 699320836 269605303 909184179 228558413 628527776 241125244 647648143 894057344 367844601 16665360 439339586 416995869 928513123 630090798 856326207 616264874 502919099 968774867 216011978 235568360 94584084 957184850 832388570 933567105 815291707 953752816 864848357 443752465 187600685 607803087...
input:
Eva 26 909184179 367844601 16665360 439339586 968774867 832388570 953752816 187600685 444666364 881441686 946515047 412654746 821224581 670661395 734357601 824587940 850899002 991993833 799537363 56037045 62561769 9068688 526596801 353423562 257970526 229805958
output:
real
result:
ok single line: 'real'
Test #8:
score: 100
Accepted
time: 1ms
memory: 3620kb
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:
90 859521736 546448292 214734663 47198676 198989461 796797027 392695512 283848739 428546472 212810339 783593540 48769964 561669590 660730835 93543093 148710634 598352009 122181550 290365310 653731859 900386858 988253958 829682306 340882086 479337453 9978137 945025862 681771750 386509439 53183178 936...
input:
Eva 47 214734663 198989461 796797027 428546472 212810339 48769964 561669590 660730835 148710634 122181550 290365310 340882086 9978137 945025862 681771750 53183178 97952427 496014228 841040800 712440242 240888381 495997212 110093342 911570460 401781664 976336327 308528561 139363064 597188065 39495824...
output:
queue
result:
ok single line: 'queue'
Test #9:
score: 100
Accepted
time: 1ms
memory: 3672kb
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:
110 243632888 586325250 694127443 800574321 888084953 749634168 666548153 83355949 272518483 524653734 102853398 245798603 769520362 671637561 259267015 749931761 920147232 67262568 994928285 637607424 538513136 473507838 404933278 401654451 957388179 858977259 900493543 898837701 302283834 40645255...
input:
Eva 52 243632888 694127443 800574321 888084953 666548153 83355949 272518483 102853398 245798603 920147232 67262568 473507838 45567175 180843040 542466689 962229567 348583100 865050647 319730152 443126979 719210778 821733869 114093762 545434694 252492267 141010148 902531849 507027123 532774019 525221...
output:
cotton
result:
ok single line: 'cotton'
Test #10:
score: 100
Accepted
time: 0ms
memory: 3684kb
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:
130 856067642 884907214 161857812 924078471 272372984 886784761 184700677 222004711 70986718 776402612 913677883 380764632 308541234 452103994 223327373 580077891 761802621 764351576 504465988 988476655 817065260 831701531 10827908 116207354 677293989 929369964 367657973 696651489 215854515 92017464...
input:
Eva 53 924078471 886784761 70986718 913677883 308541234 452103994 223327373 761802621 504465988 988476655 929369964 696651489 920174644 228252733 296579894 519291429 862225245 253144857 518715460 854958628 136055530 567626918 389568278 485910744 199113040 207443739 2299595 891037336 853338786 467167...
output:
zealous
result:
ok single line: 'zealous'
Test #11:
score: 100
Accepted
time: 0ms
memory: 3616kb
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:
150 654659340 987165626 546036476 824128496 34192160 796579018 247810046 549607536 557669594 942523345 905724662 182368614 979948016 635298038 629373077 52747952 539422414 183784046 148795459 419363052 817947019 486744051 211162735 871430298 745963683 241858423 619342027 860303839 671056915 97850273...
input:
Eva 76 987165626 546036476 824128496 796579018 247810046 942523345 182368614 979948016 629373077 52747952 539422414 871430298 745963683 978502735 580466317 470142110 286691706 341033762 71817329 136723853 590051447 953198031 927485355 396419354 91292374 883531948 83925823 302935860 517734104 1641871...
output:
assessee
result:
ok single line: 'assessee'
Test #12:
score: 100
Accepted
time: 1ms
memory: 3824kb
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:
170 709684383 324152699 731172339 350550500 434316101 776489624 292932372 49052841 569815411 288602933 405536664 549235347 398590961 99542120 981491396 248310641 670828664 607362454 387918294 638249571 318386314 304983297 371082997 393758474 138168105 545835228 71123237 812103252 122312181 21846379 ...
input:
Eva 86 324152699 434316101 776489624 292932372 569815411 405536664 981491396 248310641 387918294 638249571 304983297 371082997 122312181 140887768 631730023 564331094 96467656 540592912 604085628 147633487 68060985 614257686 903415555 292938237 511331785 684858737 648097409 407626723 841604096 43423...
output:
impatient
result:
ok single line: 'impatient'
Test #13:
score: 100
Accepted
time: 1ms
memory: 3828kb
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:
190 745743962 4787669 608626626 188051545 735131383 626584789 806987960 819200527 938569196 462646629 322442529 66176837 175566867 737481423 644593814 252359737 118962956 932803209 92393069 329305611 571931837 111440750 121780439 638542343 229767362 192931707 391036449 92658523 228937527 134014814 1...
input:
Eva 102 745743962 4787669 608626626 735131383 626584789 806987960 938569196 462646629 66176837 175566867 118962956 92393069 329305611 111440750 638542343 229767362 391036449 92658523 134014814 128984747 36392068 105870268 580469391 16665311 976769674 471216096 20017160 511601194 555259882 891009151 ...
output:
bookkeeper
result:
ok single line: 'bookkeeper'
Test #14:
score: 100
Accepted
time: 1ms
memory: 3796kb
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:
210 116527570 636946200 44158505 570934109 686360808 817715786 931977874 555541953 41280023 994969644 461963791 356093491 651932525 44367126 986623845 54237363 876836515 739377617 414607429 26384110 835054782 231131464 25185412 218614832 212958440 38319135 707535779 759293790 507090650 554182126 533...
input:
Eva 105 636946200 570934109 686360808 817715786 555541953 461963791 651932525 44367126 986623845 876836515 414607429 26384110 231131464 212958440 707535779 759293790 533490957 642201198 996777818 624269425 12507146 74331463 839502408 699521380 979207211 607530295 974071996 354783463 540933709 904140...
output:
copyrighted
result:
ok single line: 'copyrighted'
Test #15:
score: 100
Accepted
time: 1ms
memory: 3844kb
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:
230 515969381 806004442 996810754 471320517 718186584 739788104 12377711 393491042 138629037 577819479 216172058 924185163 635463947 830588475 705637480 973585735 268124601 565417260 901199850 286970976 483830593 662861310 349148387 101221848 91685604 691356536 225224369 344730179 470890764 90308011...
input:
Eva 123 515969381 806004442 996810754 739788104 12377711 393491042 216172058 830588475 483830593 662861310 349148387 101221848 691356536 344730179 789895037 339820721 55893495 391963852 142082452 797162350 827905627 395594617 190359152 224388135 104987972 29615725 464907704 568855507 513003711 25681...
output:
squeezeboxes
result:
ok single line: 'squeezeboxes'
Test #16:
score: 100
Accepted
time: 1ms
memory: 3816kb
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:
250 935457093 559766559 248792193 745826238 774734801 100167599 457825353 275136953 679211295 139313162 200670456 714422450 512093945 976845596 739256919 96054522 60501566 206455376 236485775 12186870 475831635 759038733 933585267 98740430 244438924 620681531 220901857 857921222 543815610 24893206 5...
input:
Eva 125 248792193 679211295 139313162 714422450 512093945 739256919 60501566 206455376 236485775 933585267 244438924 620681531 220901857 857921222 24893206 663024532 907055849 816661109 807870397 498943319 913829412 838984356 52086089 850738114 910126663 131669074 512633200 122048962 875268572 27625...
output:
embarrassment
result:
ok single line: 'embarrassment'
Test #17:
score: 100
Accepted
time: 0ms
memory: 3628kb
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:
270 26504236 624821013 983016862 760005644 655945379 660477267 305001038 547468298 832165590 522129432 662703560 167950713 349446024 216353888 775168547 762944873 111723657 844759528 497109094 311832270 604712002 553781738 723343491 681155770 398999168 330998141 651036080 660620058 215425804 3867706...
input:
Eva 131 26504236 624821013 655945379 660477267 522129432 167950713 216353888 775168547 762944873 111723657 844759528 497109094 604712002 553781738 723343491 681155770 330998141 660620058 386770622 32891362 313491447 876982414 746575098 622715344 663871245 543311372 706056704 400277432 526467829 2323...
output:
facelessnesses
result:
ok single line: 'facelessnesses'
Test #18:
score: 100
Accepted
time: 1ms
memory: 3684kb
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:
290 798496889 868450776 501626122 653065021 70942105 784028934 50122309 713389023 455275393 454907818 248635760 146802782 705367751 672081377 306212766 297314029 162213788 694769092 163938766 906351816 434264322 638541656 982170428 234174269 835230270 644257237 504514357 500497567 39311379 440541227...
input:
Eva 160 798496889 868450776 501626122 653065021 70942105 454907818 146802782 672081377 306212766 297314029 162213788 163938766 434264322 982170428 835230270 644257237 504514357 500497567 440541227 937385412 678277836 88628461 159070273 145607806 471307067 732313853 134315206 818607995 484596319 6835...
output:
oxyphenbutazone
result:
ok single line: 'oxyphenbutazone'
Test #19:
score: 100
Accepted
time: 1ms
memory: 3764kb
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:
290 718393762 737722958 24440176 673117860 684153143 711967536 788337006 202782897 881263011 262382189 404746791 162670364 361058233 881133561 896796867 714466965 564367837 700171009 367903625 665806241 739266708 840909359 297786281 426715525 893984695 392964658 123497557 359414790 751157462 1671969...
input:
Eva 136 737722958 24440176 788337006 881263011 262382189 361058233 881133561 896796867 700171009 739266708 751157462 167196990 924246208 323544268 340768499 834666252 305159955 59222787 551990787 615600170 26500376 315147173 426605396 84679533 748113867 463698136 833664070 586784866 808263973 499771...
output:
uncopyrightable
result:
ok single line: 'uncopyrightable'
Test #20:
score: 100
Accepted
time: 1ms
memory: 3828kb
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:
290 768870797 720696693 398713956 447485286 619775939 331646120 552888541 95023955 947768404 294265236 933135636 685858262 754752663 425937004 204810554 11499541 58862399 294598150 436624229 816252064 91841032 779897439 195676837 140175390 145165478 805894373 878040776 685701466 859365153 750503271 ...
input:
Eva 144 720696693 95023955 294265236 685858262 425937004 204810554 58862399 436624229 91841032 195676837 140175390 859365153 750503271 176304569 187778129 968805317 243319886 296925168 96888736 262293054 352164025 18546053 460789267 870711836 733673612 261177250 684237718 295630173 918163168 8031980...
output:
decommissioning
result:
ok single line: 'decommissioning'
Test #21:
score: 100
Accepted
time: 1ms
memory: 3620kb
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:
290 616488013 289705312 33711611 241612176 74426045 290046062 516321723 438886271 470452800 282107370 892450811 205388611 111042070 81957477 822158407 207262910 689146978 160952984 49967490 969508654 905302085 72394709 459502485 239940150 635075764 768400973 47467788 604531862 286946801 514891644 85...
input:
Eva 170 616488013 241612176 290046062 438886271 470452800 282107370 205388611 111042070 160952984 49967490 969508654 72394709 239940150 635075764 768400973 663061594 897530944 648737914 870747066 529497744 175159069 254933242 539658548 217188437 908281492 150460423 84939112 104951374 717082272 34901...
output:
kindheartedness
result:
ok single line: 'kindheartedness'
Test #22:
score: 100
Accepted
time: 1ms
memory: 3628kb
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:
290 14352941 194748920 986412177 619208986 754189602 74124957 518157558 139714547 943311971 664012623 395270229 39831178 889271831 599648802 270651226 290956881 628488838 684888966 48921924 54771195 286856183 354378304 334670136 731173941 309206947 318869863 37547330 842353648 189557877 986099079 98...
input:
Eva 152 194748920 619208986 943311971 664012623 39831178 889271831 599648802 270651226 290956881 628488838 48921924 54771195 334670136 309206947 318869863 37547330 842353648 189557877 986099079 987374916 963783909 523022450 926381971 872278063 514626214 377211599 402179845 537293716 567106586 189892...
output:
appropriateness
result:
ok single line: 'appropriateness'