結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-10-14 23:22:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 625 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,704 KB
実行使用メモリ 263,188 KB
最終ジャッジ日時 2024-06-26 17:13:51
合計ジャッジ時間 45,731 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 105 ms
110,464 KB
testcase_01 AC 100 ms
110,776 KB
testcase_02 AC 611 ms
158,432 KB
testcase_03 WA -
testcase_04 AC 608 ms
154,316 KB
testcase_05 AC 557 ms
138,860 KB
testcase_06 AC 651 ms
160,708 KB
testcase_07 WA -
testcase_08 AC 465 ms
129,104 KB
testcase_09 WA -
testcase_10 AC 440 ms
135,864 KB
testcase_11 AC 333 ms
143,056 KB
testcase_12 AC 520 ms
153,284 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 366 ms
168,424 KB
testcase_18 WA -
testcase_19 AC 468 ms
143,600 KB
testcase_20 WA -
testcase_21 AC 575 ms
130,512 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 405 ms
263,060 KB
testcase_53 AC 410 ms
263,188 KB
testcase_54 AC 392 ms
263,188 KB
testcase_55 AC 380 ms
201,596 KB
testcase_56 AC 379 ms
201,768 KB
testcase_57 AC 391 ms
202,016 KB
testcase_58 AC 224 ms
175,548 KB
testcase_59 AC 876 ms
224,600 KB
testcase_60 AC 417 ms
129,128 KB
testcase_61 AC 373 ms
201,708 KB
testcase_62 AC 164 ms
128,256 KB
testcase_63 AC 298 ms
128,128 KB
testcase_64 AC 316 ms
127,744 KB
testcase_65 AC 311 ms
128,116 KB
testcase_66 WA -
testcase_67 AC 671 ms
128,512 KB
testcase_68 AC 188 ms
127,872 KB
testcase_69 AC 614 ms
128,000 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)
    

    num = 0
    for i,j in enumerate(s):
        k = ord(j)-ord("a")
        num += pows[i]*k
        num %= mod

    if num in hash[ls]:
        print("Yes")
    else:
        print("No")
    hash[ls].add(num)

    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
        hash[ls].add(temp)
0