結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-10-14 23:28:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 919 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 221,368 KB
最終ジャッジ日時 2024-06-26 17:26:50
合計ジャッジ時間 51,875 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 183 ms
166,144 KB
testcase_01 AC 182 ms
166,640 KB
testcase_02 AC 702 ms
186,876 KB
testcase_03 AC 760 ms
193,880 KB
testcase_04 AC 731 ms
187,432 KB
testcase_05 AC 685 ms
177,620 KB
testcase_06 AC 797 ms
188,480 KB
testcase_07 AC 469 ms
179,712 KB
testcase_08 AC 556 ms
171,172 KB
testcase_09 AC 658 ms
193,176 KB
testcase_10 AC 552 ms
174,516 KB
testcase_11 AC 444 ms
175,076 KB
testcase_12 AC 619 ms
183,644 KB
testcase_13 AC 788 ms
198,784 KB
testcase_14 AC 732 ms
182,168 KB
testcase_15 AC 848 ms
190,228 KB
testcase_16 AC 911 ms
205,592 KB
testcase_17 AC 401 ms
176,256 KB
testcase_18 WA -
testcase_19 AC 592 ms
179,632 KB
testcase_20 AC 813 ms
201,312 KB
testcase_21 AC 708 ms
172,644 KB
testcase_22 AC 945 ms
209,120 KB
testcase_23 AC 923 ms
208,132 KB
testcase_24 AC 937 ms
208,180 KB
testcase_25 WA -
testcase_26 AC 944 ms
208,512 KB
testcase_27 AC 952 ms
208,128 KB
testcase_28 AC 1,005 ms
209,500 KB
testcase_29 AC 964 ms
209,532 KB
testcase_30 WA -
testcase_31 AC 947 ms
208,708 KB
testcase_32 AC 964 ms
207,968 KB
testcase_33 AC 940 ms
208,512 KB
testcase_34 AC 939 ms
208,220 KB
testcase_35 WA -
testcase_36 AC 924 ms
208,104 KB
testcase_37 AC 957 ms
208,512 KB
testcase_38 AC 922 ms
208,360 KB
testcase_39 AC 967 ms
209,524 KB
testcase_40 WA -
testcase_41 AC 937 ms
209,240 KB
testcase_42 AC 649 ms
196,608 KB
testcase_43 AC 656 ms
196,224 KB
testcase_44 AC 679 ms
196,096 KB
testcase_45 AC 653 ms
196,564 KB
testcase_46 AC 652 ms
196,096 KB
testcase_47 WA -
testcase_48 AC 531 ms
186,584 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 543 ms
186,400 KB
testcase_52 AC 332 ms
216,544 KB
testcase_53 AC 325 ms
216,788 KB
testcase_54 AC 330 ms
216,536 KB
testcase_55 AC 324 ms
169,344 KB
testcase_56 AC 328 ms
169,600 KB
testcase_57 AC 326 ms
169,344 KB
testcase_58 AC 300 ms
213,128 KB
testcase_59 AC 975 ms
221,368 KB
testcase_60 AC 487 ms
170,064 KB
testcase_61 AC 327 ms
169,696 KB
testcase_62 AC 241 ms
169,216 KB
testcase_63 AC 434 ms
169,088 KB
testcase_64 AC 437 ms
168,832 KB
testcase_65 AC 455 ms
169,064 KB
testcase_66 AC 354 ms
169,800 KB
testcase_67 AC 784 ms
169,048 KB
testcase_68 AC 319 ms
169,472 KB
testcase_69 AC 724 ms
168,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

base = 37
mod = 10**9 + 9
mod2 = 1<<63
M = 10**6+2
pows = [1]*M
for i in range(1,M-1):
    pows[i] = pows[i-1]*base%mod


hash = [set() for i in range(M)]

hash2 = [set() for i in range(M)]

n = int(input())
for _ in range(n):
    s = list(input())
    ls = len(s)
    
    find = 0
    num = 0
    num2 = 0
    for i,j in enumerate(s):
        k = ord(j)-ord("a")
        num += pows[i]*k
        num %= mod
        num2 += pows[i]*k
        num2 %= mod2

    if num in hash[ls] and num2 in hash2[ls]:
        find = 1
    
    for i in range(ls-1):
        x = ord(s[i])-ord("a")
        y = ord(s[i+1])-ord("a")

        temp = num + (y-x)*pows[i]+ (x-y)*pows[i+1]
        temp %= mod

        temp2 = num2 + (y-x)*pows[i]+ (x-y)*pows[i+1]
        temp2 %= mod2
        if temp in hash[ls] and temp2 in hash2[ls]:
            find = 1

    print("Yes" if find else "No")
    hash[ls].add(num)
    hash2[ls].add(num2)
0