結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-10-14 23:37:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 871 ms / 3,000 ms
コード長 761 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 217,628 KB
最終ジャッジ日時 2024-06-26 17:36:34
合計ジャッジ時間 44,431 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
165,840 KB
testcase_01 AC 179 ms
165,888 KB
testcase_02 AC 646 ms
176,348 KB
testcase_03 AC 650 ms
179,328 KB
testcase_04 AC 663 ms
177,240 KB
testcase_05 AC 622 ms
174,052 KB
testcase_06 AC 755 ms
177,956 KB
testcase_07 AC 380 ms
172,108 KB
testcase_08 AC 535 ms
171,572 KB
testcase_09 AC 569 ms
178,320 KB
testcase_10 AC 510 ms
172,632 KB
testcase_11 AC 406 ms
172,152 KB
testcase_12 AC 570 ms
176,096 KB
testcase_13 AC 662 ms
180,992 KB
testcase_14 AC 632 ms
175,528 KB
testcase_15 AC 777 ms
178,636 KB
testcase_16 AC 792 ms
184,416 KB
testcase_17 AC 341 ms
171,728 KB
testcase_18 AC 469 ms
175,872 KB
testcase_19 AC 531 ms
174,304 KB
testcase_20 AC 666 ms
182,272 KB
testcase_21 AC 677 ms
172,048 KB
testcase_22 AC 808 ms
185,796 KB
testcase_23 AC 805 ms
185,744 KB
testcase_24 AC 807 ms
185,836 KB
testcase_25 AC 805 ms
186,312 KB
testcase_26 AC 819 ms
185,260 KB
testcase_27 AC 803 ms
185,740 KB
testcase_28 AC 817 ms
185,564 KB
testcase_29 AC 816 ms
186,148 KB
testcase_30 AC 802 ms
185,516 KB
testcase_31 AC 802 ms
185,668 KB
testcase_32 AC 808 ms
185,596 KB
testcase_33 AC 801 ms
185,972 KB
testcase_34 AC 820 ms
185,900 KB
testcase_35 AC 864 ms
185,908 KB
testcase_36 AC 787 ms
185,400 KB
testcase_37 AC 812 ms
185,400 KB
testcase_38 AC 786 ms
185,472 KB
testcase_39 AC 822 ms
186,136 KB
testcase_40 AC 829 ms
186,416 KB
testcase_41 AC 825 ms
185,732 KB
testcase_42 AC 536 ms
180,188 KB
testcase_43 AC 531 ms
179,680 KB
testcase_44 AC 538 ms
179,680 KB
testcase_45 AC 541 ms
180,064 KB
testcase_46 AC 543 ms
179,556 KB
testcase_47 AC 448 ms
176,368 KB
testcase_48 AC 515 ms
176,368 KB
testcase_49 AC 435 ms
176,488 KB
testcase_50 AC 442 ms
175,984 KB
testcase_51 AC 439 ms
176,372 KB
testcase_52 AC 269 ms
217,508 KB
testcase_53 AC 271 ms
217,624 KB
testcase_54 AC 271 ms
217,628 KB
testcase_55 AC 261 ms
169,728 KB
testcase_56 AC 261 ms
169,920 KB
testcase_57 AC 263 ms
169,916 KB
testcase_58 AC 279 ms
213,828 KB
testcase_59 AC 871 ms
191,364 KB
testcase_60 AC 485 ms
170,300 KB
testcase_61 AC 259 ms
170,112 KB
testcase_62 AC 237 ms
169,728 KB
testcase_63 AC 362 ms
169,872 KB
testcase_64 AC 371 ms
169,940 KB
testcase_65 AC 383 ms
169,952 KB
testcase_66 AC 281 ms
170,520 KB
testcase_67 AC 690 ms
170,112 KB
testcase_68 AC 263 ms
169,856 KB
testcase_69 AC 687 ms
170,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random
base = random.randint(30,1000)
mod = random.randint(10**7,10**15)
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
    for i,j in enumerate(s):
        k = ord(j)-ord("a")
        num += pows[i]*k
        num %= mod


    if num 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

        if temp in hash[ls]:
            find = 1

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