結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー titiatitia
提出日時 2022-10-14 22:36:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 771 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 266,024 KB
最終ジャッジ日時 2024-06-26 16:11:24
合計ジャッジ時間 27,702 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
136,000 KB
testcase_01 AC 85 ms
137,104 KB
testcase_02 AC 293 ms
190,340 KB
testcase_03 AC 334 ms
191,028 KB
testcase_04 AC 284 ms
187,252 KB
testcase_05 AC 250 ms
179,480 KB
testcase_06 AC 310 ms
188,808 KB
testcase_07 AC 344 ms
215,364 KB
testcase_08 AC 179 ms
167,016 KB
testcase_09 AC 339 ms
192,332 KB
testcase_10 AC 201 ms
170,808 KB
testcase_11 AC 188 ms
166,180 KB
testcase_12 AC 273 ms
179,700 KB
testcase_13 AC 392 ms
208,296 KB
testcase_14 AC 266 ms
185,544 KB
testcase_15 AC 338 ms
195,420 KB
testcase_16 AC 406 ms
202,984 KB
testcase_17 AC 274 ms
181,072 KB
testcase_18 AC 373 ms
219,932 KB
testcase_19 AC 232 ms
173,084 KB
testcase_20 AC 419 ms
205,860 KB
testcase_21 AC 215 ms
176,856 KB
testcase_22 AC 468 ms
212,536 KB
testcase_23 AC 466 ms
212,492 KB
testcase_24 AC 463 ms
210,528 KB
testcase_25 AC 468 ms
214,212 KB
testcase_26 AC 451 ms
213,340 KB
testcase_27 AC 459 ms
213,464 KB
testcase_28 AC 459 ms
210,176 KB
testcase_29 AC 464 ms
213,544 KB
testcase_30 AC 458 ms
212,588 KB
testcase_31 AC 478 ms
210,892 KB
testcase_32 AC 479 ms
210,008 KB
testcase_33 AC 468 ms
212,472 KB
testcase_34 AC 472 ms
211,340 KB
testcase_35 AC 463 ms
213,656 KB
testcase_36 AC 465 ms
214,152 KB
testcase_37 AC 470 ms
213,452 KB
testcase_38 AC 471 ms
214,604 KB
testcase_39 AC 471 ms
211,340 KB
testcase_40 AC 471 ms
211,724 KB
testcase_41 AC 460 ms
211,340 KB
testcase_42 AC 322 ms
218,348 KB
testcase_43 AC 315 ms
217,952 KB
testcase_44 AC 320 ms
218,244 KB
testcase_45 AC 313 ms
218,420 KB
testcase_46 AC 319 ms
218,080 KB
testcase_47 AC 383 ms
250,012 KB
testcase_48 AC 383 ms
249,988 KB
testcase_49 AC 384 ms
250,164 KB
testcase_50 AC 372 ms
250,340 KB
testcase_51 AC 378 ms
250,280 KB
testcase_52 AC 365 ms
265,740 KB
testcase_53 AC 368 ms
266,024 KB
testcase_54 AC 370 ms
265,908 KB
testcase_55 AC 312 ms
265,280 KB
testcase_56 AC 306 ms
265,020 KB
testcase_57 AC 308 ms
264,692 KB
testcase_58 AC 184 ms
201,108 KB
testcase_59 AC 443 ms
230,524 KB
testcase_60 AC 184 ms
171,264 KB
testcase_61 AC 303 ms
264,740 KB
testcase_62 AC 111 ms
151,092 KB
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 AC 272 ms
205,892 KB
testcase_68 WA -
testcase_69 AC 280 ms
205,848 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=9007199254740997

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