結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-10-14 23:32:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 877 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 216,800 KB
最終ジャッジ日時 2024-06-26 17:29:12
合計ジャッジ時間 55,376 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 193 ms
166,528 KB
testcase_01 AC 195 ms
166,444 KB
testcase_02 AC 759 ms
180,224 KB
testcase_03 AC 792 ms
184,736 KB
testcase_04 AC 806 ms
181,012 KB
testcase_05 AC 738 ms
175,168 KB
testcase_06 AC 867 ms
181,472 KB
testcase_07 AC 504 ms
175,488 KB
testcase_08 AC 588 ms
171,584 KB
testcase_09 AC 699 ms
184,056 KB
testcase_10 AC 617 ms
173,208 KB
testcase_11 AC 449 ms
173,216 KB
testcase_12 AC 667 ms
178,448 KB
testcase_13 AC 796 ms
187,496 KB
testcase_14 AC 756 ms
177,664 KB
testcase_15 AC 937 ms
182,124 KB
testcase_16 AC 1,002 ms
190,924 KB
testcase_17 AC 420 ms
173,676 KB
testcase_18 WA -
testcase_19 AC 638 ms
175,784 KB
testcase_20 AC 864 ms
189,908 KB
testcase_21 AC 753 ms
171,460 KB
testcase_22 AC 1,023 ms
193,456 KB
testcase_23 AC 1,035 ms
193,664 KB
testcase_24 AC 1,039 ms
193,516 KB
testcase_25 WA -
testcase_26 AC 1,043 ms
193,760 KB
testcase_27 AC 1,036 ms
193,048 KB
testcase_28 AC 1,043 ms
193,060 KB
testcase_29 AC 1,063 ms
193,884 KB
testcase_30 WA -
testcase_31 AC 1,037 ms
193,984 KB
testcase_32 AC 1,041 ms
193,828 KB
testcase_33 AC 1,033 ms
193,664 KB
testcase_34 AC 1,039 ms
192,932 KB
testcase_35 WA -
testcase_36 AC 1,052 ms
193,052 KB
testcase_37 AC 1,043 ms
193,220 KB
testcase_38 AC 1,017 ms
193,024 KB
testcase_39 AC 1,036 ms
194,456 KB
testcase_40 WA -
testcase_41 AC 1,015 ms
192,764 KB
testcase_42 AC 726 ms
185,664 KB
testcase_43 AC 739 ms
185,664 KB
testcase_44 AC 741 ms
185,656 KB
testcase_45 AC 738 ms
185,788 KB
testcase_46 AC 739 ms
185,660 KB
testcase_47 WA -
testcase_48 AC 598 ms
180,856 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 611 ms
180,732 KB
testcase_52 AC 354 ms
216,676 KB
testcase_53 AC 354 ms
216,544 KB
testcase_54 AC 355 ms
216,800 KB
testcase_55 AC 369 ms
170,240 KB
testcase_56 AC 384 ms
169,984 KB
testcase_57 AC 363 ms
170,112 KB
testcase_58 AC 329 ms
213,056 KB
testcase_59 AC 1,041 ms
202,028 KB
testcase_60 AC 532 ms
169,660 KB
testcase_61 AC 366 ms
170,228 KB
testcase_62 AC 257 ms
169,728 KB
testcase_63 AC 481 ms
169,136 KB
testcase_64 AC 492 ms
168,960 KB
testcase_65 AC 512 ms
169,088 KB
testcase_66 AC 397 ms
170,480 KB
testcase_67 AC 856 ms
169,216 KB
testcase_68 AC 358 ms
169,472 KB
testcase_69 AC 799 ms
169,984 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,num2) in hash[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,temp2) in hash[ls]:
            find = 1

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