結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー titiatitia
提出日時 2022-10-14 22:45:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 581 ms / 3,000 ms
コード長 840 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 265,916 KB
最終ジャッジ日時 2024-06-26 16:26:51
合計ジャッジ時間 33,374 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
135,296 KB
testcase_01 AC 106 ms
135,168 KB
testcase_02 AC 341 ms
189,824 KB
testcase_03 AC 391 ms
190,464 KB
testcase_04 AC 352 ms
187,008 KB
testcase_05 AC 293 ms
178,688 KB
testcase_06 AC 366 ms
188,800 KB
testcase_07 AC 406 ms
213,812 KB
testcase_08 AC 216 ms
166,272 KB
testcase_09 AC 393 ms
192,080 KB
testcase_10 AC 250 ms
170,752 KB
testcase_11 AC 231 ms
166,272 KB
testcase_12 AC 318 ms
179,584 KB
testcase_13 AC 457 ms
208,164 KB
testcase_14 AC 322 ms
185,344 KB
testcase_15 AC 415 ms
195,584 KB
testcase_16 AC 482 ms
202,496 KB
testcase_17 AC 313 ms
180,488 KB
testcase_18 AC 432 ms
219,284 KB
testcase_19 AC 282 ms
173,056 KB
testcase_20 AC 473 ms
205,728 KB
testcase_21 AC 264 ms
176,512 KB
testcase_22 AC 529 ms
212,356 KB
testcase_23 AC 532 ms
212,744 KB
testcase_24 AC 532 ms
210,312 KB
testcase_25 AC 526 ms
214,156 KB
testcase_26 AC 529 ms
213,892 KB
testcase_27 AC 525 ms
213,504 KB
testcase_28 AC 530 ms
210,956 KB
testcase_29 AC 529 ms
213,376 KB
testcase_30 AC 528 ms
212,364 KB
testcase_31 AC 521 ms
209,672 KB
testcase_32 AC 522 ms
210,312 KB
testcase_33 AC 521 ms
212,496 KB
testcase_34 AC 527 ms
210,316 KB
testcase_35 AC 525 ms
213,520 KB
testcase_36 AC 534 ms
214,156 KB
testcase_37 AC 538 ms
213,260 KB
testcase_38 AC 527 ms
213,892 KB
testcase_39 AC 524 ms
211,216 KB
testcase_40 AC 531 ms
211,712 KB
testcase_41 AC 523 ms
211,348 KB
testcase_42 AC 378 ms
217,984 KB
testcase_43 AC 383 ms
217,856 KB
testcase_44 AC 381 ms
217,984 KB
testcase_45 AC 386 ms
217,984 KB
testcase_46 AC 393 ms
218,240 KB
testcase_47 AC 499 ms
249,972 KB
testcase_48 AC 581 ms
249,964 KB
testcase_49 AC 502 ms
250,476 KB
testcase_50 AC 504 ms
249,956 KB
testcase_51 AC 496 ms
250,352 KB
testcase_52 AC 458 ms
265,660 KB
testcase_53 AC 461 ms
265,784 KB
testcase_54 AC 467 ms
265,916 KB
testcase_55 AC 418 ms
264,960 KB
testcase_56 AC 424 ms
264,576 KB
testcase_57 AC 410 ms
264,832 KB
testcase_58 AC 232 ms
200,724 KB
testcase_59 AC 565 ms
230,056 KB
testcase_60 AC 228 ms
171,136 KB
testcase_61 AC 420 ms
264,704 KB
testcase_62 AC 144 ms
150,912 KB
testcase_63 AC 272 ms
195,456 KB
testcase_64 AC 260 ms
195,456 KB
testcase_65 AC 273 ms
195,456 KB
testcase_66 AC 419 ms
264,704 KB
testcase_67 AC 328 ms
205,696 KB
testcase_68 AC 206 ms
181,888 KB
testcase_69 AC 332 ms
205,696 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])%mod
        CHECKLEN[LEN].add(score2)
    
        
        
        
    
0