結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-10-14 23:25:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 665 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 175,560 KB
最終ジャッジ日時 2024-06-26 17:19:20
合計ジャッジ時間 39,398 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
110,772 KB
testcase_01 AC 95 ms
110,728 KB
testcase_02 AC 555 ms
133,956 KB
testcase_03 AC 571 ms
137,128 KB
testcase_04 AC 590 ms
135,116 KB
testcase_05 AC 545 ms
131,608 KB
testcase_06 AC 625 ms
136,460 KB
testcase_07 WA -
testcase_08 AC 448 ms
129,784 KB
testcase_09 WA -
testcase_10 AC 438 ms
130,636 KB
testcase_11 AC 322 ms
130,136 KB
testcase_12 AC 478 ms
134,084 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 689 ms
137,348 KB
testcase_16 AC 706 ms
142,224 KB
testcase_17 AC 268 ms
129,276 KB
testcase_18 WA -
testcase_19 AC 469 ms
133,328 KB
testcase_20 WA -
testcase_21 AC 602 ms
130,404 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 209 ms
175,352 KB
testcase_53 AC 207 ms
175,560 KB
testcase_54 AC 208 ms
175,324 KB
testcase_55 AC 190 ms
127,940 KB
testcase_56 AC 191 ms
127,852 KB
testcase_57 AC 193 ms
127,864 KB
testcase_58 AC 207 ms
175,384 KB
testcase_59 AC 770 ms
150,264 KB
testcase_60 AC 416 ms
129,260 KB
testcase_61 AC 193 ms
127,784 KB
testcase_62 AC 170 ms
127,840 KB
testcase_63 AC 289 ms
127,916 KB
testcase_64 AC 295 ms
128,212 KB
testcase_65 AC 312 ms
127,992 KB
testcase_66 AC 215 ms
128,892 KB
testcase_67 AC 623 ms
128,896 KB
testcase_68 AC 201 ms
128,272 KB
testcase_69 AC 611 ms
127,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

base = 37
mod = 10**9 + 9
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)]

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