結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー 👑 rin204rin204
提出日時 2022-10-16 16:20:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,885 ms / 3,000 ms
コード長 709 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 404,844 KB
最終ジャッジ日時 2024-06-27 11:32:38
合計ジャッジ時間 27,584 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
54,016 KB
testcase_01 AC 44 ms
54,016 KB
testcase_02 AC 238 ms
88,448 KB
testcase_03 AC 261 ms
90,360 KB
testcase_04 AC 247 ms
89,344 KB
testcase_05 AC 218 ms
86,528 KB
testcase_06 AC 262 ms
90,624 KB
testcase_07 AC 195 ms
81,792 KB
testcase_08 AC 180 ms
82,560 KB
testcase_09 AC 252 ms
88,384 KB
testcase_10 AC 189 ms
83,728 KB
testcase_11 AC 168 ms
81,536 KB
testcase_12 AC 236 ms
87,740 KB
testcase_13 AC 283 ms
91,520 KB
testcase_14 AC 244 ms
88,376 KB
testcase_15 AC 291 ms
91,916 KB
testcase_16 AC 321 ms
96,256 KB
testcase_17 AC 166 ms
80,768 KB
testcase_18 AC 230 ms
85,888 KB
testcase_19 AC 208 ms
85,492 KB
testcase_20 AC 292 ms
92,516 KB
testcase_21 AC 227 ms
85,760 KB
testcase_22 AC 334 ms
96,416 KB
testcase_23 AC 330 ms
96,148 KB
testcase_24 AC 335 ms
96,512 KB
testcase_25 AC 335 ms
97,308 KB
testcase_26 AC 330 ms
96,544 KB
testcase_27 AC 344 ms
96,652 KB
testcase_28 AC 333 ms
96,140 KB
testcase_29 AC 353 ms
96,840 KB
testcase_30 AC 335 ms
96,284 KB
testcase_31 AC 329 ms
96,100 KB
testcase_32 AC 340 ms
96,816 KB
testcase_33 AC 346 ms
97,172 KB
testcase_34 AC 336 ms
96,568 KB
testcase_35 AC 351 ms
96,836 KB
testcase_36 AC 332 ms
96,268 KB
testcase_37 AC 331 ms
96,528 KB
testcase_38 AC 346 ms
96,504 KB
testcase_39 AC 357 ms
96,972 KB
testcase_40 AC 332 ms
96,272 KB
testcase_41 AC 336 ms
96,572 KB
testcase_42 AC 260 ms
90,760 KB
testcase_43 AC 258 ms
91,148 KB
testcase_44 AC 261 ms
90,900 KB
testcase_45 AC 257 ms
90,764 KB
testcase_46 AC 254 ms
90,764 KB
testcase_47 AC 220 ms
86,112 KB
testcase_48 AC 222 ms
86,112 KB
testcase_49 AC 219 ms
86,112 KB
testcase_50 AC 223 ms
86,372 KB
testcase_51 AC 222 ms
85,984 KB
testcase_52 AC 1,885 ms
404,712 KB
testcase_53 AC 1,876 ms
404,844 KB
testcase_54 AC 1,849 ms
404,592 KB
testcase_55 AC 154 ms
78,592 KB
testcase_56 AC 152 ms
78,848 KB
testcase_57 AC 164 ms
78,592 KB
testcase_58 AC 901 ms
241,956 KB
testcase_59 AC 370 ms
103,604 KB
testcase_60 AC 153 ms
81,408 KB
testcase_61 AC 156 ms
78,464 KB
testcase_62 AC 109 ms
77,696 KB
testcase_63 AC 141 ms
80,384 KB
testcase_64 AC 143 ms
80,512 KB
testcase_65 AC 150 ms
80,256 KB
testcase_66 AC 165 ms
78,592 KB
testcase_67 AC 211 ms
85,376 KB
testcase_68 AC 154 ms
78,464 KB
testcase_69 AC 211 ms
85,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random

n = int(input())
SS = [input() for _ in range(n)]
l = max(len(S) for S in SS)
hash_ = [random.choices(range(1, 1 << 62), k=26) for _ in range(l)]

se = [set() for _ in range(l + 1)]
for S in SS:
    h = 0
    for i, s in enumerate(S):
        h ^= hash_[i][ord(s) - 97]
    l = len(S)
    ans = "No"
    if h in se[l]:
        ans = "Yes"
    else:
        for i in range(l - 1):
            x = 0
            x ^= hash_[i][ord(S[i]) - 97]
            x ^= hash_[i][ord(S[i + 1]) - 97]
            x ^= hash_[i + 1][ord(S[i]) - 97]
            x ^= hash_[i + 1][ord(S[i + 1]) - 97]
            if h ^ x in se[l]:
                ans = "Yes"
                break
    print(ans)
    se[l].add(h)
0