結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー titiatitia
提出日時 2022-10-14 22:34:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 834 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 265,920 KB
最終ジャッジ日時 2024-06-26 16:05:27
合計ジャッジ時間 35,491 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
135,168 KB
testcase_01 AC 104 ms
135,424 KB
testcase_02 AC 353 ms
190,312 KB
testcase_03 AC 417 ms
190,976 KB
testcase_04 AC 360 ms
187,008 KB
testcase_05 AC 301 ms
179,328 KB
testcase_06 AC 388 ms
188,928 KB
testcase_07 AC 439 ms
215,108 KB
testcase_08 AC 228 ms
166,528 KB
testcase_09 AC 424 ms
191,820 KB
testcase_10 AC 277 ms
170,624 KB
testcase_11 AC 244 ms
166,400 KB
testcase_12 AC 333 ms
179,584 KB
testcase_13 AC 475 ms
207,916 KB
testcase_14 AC 350 ms
185,856 KB
testcase_15 AC 426 ms
195,584 KB
testcase_16 AC 512 ms
202,496 KB
testcase_17 AC 332 ms
180,868 KB
testcase_18 AC 452 ms
219,032 KB
testcase_19 AC 307 ms
172,928 KB
testcase_20 AC 535 ms
206,120 KB
testcase_21 AC 279 ms
176,896 KB
testcase_22 AC 581 ms
212,484 KB
testcase_23 AC 544 ms
212,412 KB
testcase_24 AC 554 ms
210,564 KB
testcase_25 AC 558 ms
213,892 KB
testcase_26 AC 558 ms
213,260 KB
testcase_27 AC 554 ms
213,380 KB
testcase_28 AC 564 ms
210,300 KB
testcase_29 AC 564 ms
213,764 KB
testcase_30 AC 564 ms
212,484 KB
testcase_31 AC 560 ms
209,924 KB
testcase_32 AC 558 ms
210,068 KB
testcase_33 AC 564 ms
212,236 KB
testcase_34 AC 566 ms
210,828 KB
testcase_35 AC 559 ms
213,640 KB
testcase_36 AC 570 ms
214,276 KB
testcase_37 AC 579 ms
213,004 KB
testcase_38 AC 567 ms
213,884 KB
testcase_39 AC 575 ms
211,468 KB
testcase_40 AC 578 ms
211,596 KB
testcase_41 AC 591 ms
211,352 KB
testcase_42 AC 440 ms
218,112 KB
testcase_43 AC 438 ms
217,984 KB
testcase_44 AC 442 ms
217,984 KB
testcase_45 AC 446 ms
218,496 KB
testcase_46 AC 426 ms
217,984 KB
testcase_47 AC 567 ms
250,100 KB
testcase_48 AC 556 ms
250,108 KB
testcase_49 AC 559 ms
250,104 KB
testcase_50 AC 562 ms
250,352 KB
testcase_51 AC 571 ms
250,108 KB
testcase_52 AC 536 ms
265,660 KB
testcase_53 AC 513 ms
265,788 KB
testcase_54 AC 522 ms
265,920 KB
testcase_55 AC 457 ms
264,704 KB
testcase_56 AC 450 ms
264,704 KB
testcase_57 AC 453 ms
264,832 KB
testcase_58 AC 243 ms
201,116 KB
testcase_59 AC 643 ms
230,440 KB
testcase_60 AC 238 ms
171,136 KB
testcase_61 AC 442 ms
264,704 KB
testcase_62 AC 148 ms
150,400 KB
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 AC 355 ms
205,824 KB
testcase_68 WA -
testcase_69 AC 366 ms
205,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
S=[list(input().strip()) for i in range(N)]

# Rolling Hash
LEN=len(S)

p=26 # 文字の種類
mod=(1<<50)+1 # Hashがぶつからない, pと互いに素な数を適当に指定

MAX=0
for s in S:
    MAX=max(MAX,len(s))

CHECKLEN=[set() for i in range(MAX+1)]
POWP=[1]
for i in range(10**6+1):
    POWP.append(POWP[-1]*p%mod)

for s in S:
    LEN=len(s)
    
    score=0
    for i in range(LEN):
        score=(score+(ord(s[i])-97)*POWP[i])%mod

    if score in CHECKLEN[LEN]:
        print("Yes")
    else:
        print("No")

    CHECKLEN[LEN].add(score)

    for i in range(LEN-1):
        score2=score-(ord(s[i])-97)*POWP[i]-(ord(s[i+1])-97)*POWP[i+1]+(ord(s[i+1])-97)*POWP[i]+(ord(s[i])-97)*POWP[i+1]
        CHECKLEN[LEN].add(score2)
    
        
        
        
    
0