結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー titiatitia
提出日時 2022-10-14 22:42:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 782 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 418,648 KB
最終ジャッジ日時 2024-06-26 16:19:20
合計ジャッジ時間 72,444 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 389 ms
192,356 KB
testcase_01 AC 391 ms
192,692 KB
testcase_02 AC 621 ms
257,416 KB
testcase_03 AC 850 ms
277,404 KB
testcase_04 AC 631 ms
259,260 KB
testcase_05 AC 575 ms
235,948 KB
testcase_06 AC 710 ms
267,980 KB
testcase_07 AC 1,280 ms
354,976 KB
testcase_08 AC 508 ms
215,732 KB
testcase_09 AC 888 ms
278,700 KB
testcase_10 AC 544 ms
225,280 KB
testcase_11 AC 561 ms
229,944 KB
testcase_12 AC 601 ms
245,836 KB
testcase_13 AC 937 ms
286,676 KB
testcase_14 AC 611 ms
245,636 KB
testcase_15 AC 728 ms
276,492 KB
testcase_16 AC 993 ms
292,776 KB
testcase_17 AC 873 ms
284,832 KB
testcase_18 AC 984 ms
317,680 KB
testcase_19 AC 564 ms
235,348 KB
testcase_20 AC 950 ms
293,796 KB
testcase_21 AC 546 ms
223,136 KB
testcase_22 AC 1,050 ms
318,324 KB
testcase_23 AC 1,036 ms
319,564 KB
testcase_24 AC 1,018 ms
319,168 KB
testcase_25 AC 1,027 ms
319,292 KB
testcase_26 AC 1,002 ms
318,324 KB
testcase_27 AC 1,010 ms
319,304 KB
testcase_28 AC 1,040 ms
318,880 KB
testcase_29 AC 1,039 ms
320,172 KB
testcase_30 AC 1,043 ms
317,616 KB
testcase_31 AC 1,031 ms
318,728 KB
testcase_32 AC 1,021 ms
320,316 KB
testcase_33 AC 1,026 ms
320,836 KB
testcase_34 AC 1,115 ms
320,180 KB
testcase_35 AC 1,049 ms
319,284 KB
testcase_36 AC 1,071 ms
319,508 KB
testcase_37 AC 1,050 ms
319,300 KB
testcase_38 AC 1,045 ms
318,668 KB
testcase_39 AC 1,067 ms
318,856 KB
testcase_40 AC 1,071 ms
317,100 KB
testcase_41 AC 1,093 ms
320,584 KB
testcase_42 AC 794 ms
277,256 KB
testcase_43 AC 786 ms
273,804 KB
testcase_44 AC 781 ms
277,260 KB
testcase_45 AC 780 ms
277,276 KB
testcase_46 AC 807 ms
277,360 KB
testcase_47 AC 1,378 ms
378,800 KB
testcase_48 AC 1,388 ms
378,668 KB
testcase_49 AC 1,413 ms
378,992 KB
testcase_50 AC 1,366 ms
378,808 KB
testcase_51 AC 1,336 ms
378,780 KB
testcase_52 AC 1,750 ms
418,420 KB
testcase_53 AC 1,747 ms
418,576 KB
testcase_54 AC 1,749 ms
418,648 KB
testcase_55 AC 1,664 ms
359,200 KB
testcase_56 AC 1,667 ms
359,304 KB
testcase_57 AC 1,673 ms
359,052 KB
testcase_58 AC 625 ms
265,396 KB
testcase_59 AC 900 ms
316,252 KB
testcase_60 AC 529 ms
218,360 KB
testcase_61 AC 1,693 ms
359,532 KB
testcase_62 AC 450 ms
202,568 KB
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 AC 643 ms
253,504 KB
testcase_68 WA -
testcase_69 AC 620 ms
253,252 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=618970019642690137449562111

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