結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー 👑 rin204rin204
提出日時 2022-10-16 16:16:30
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 678 bytes
コンパイル時間 343 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 425,308 KB
最終ジャッジ日時 2024-06-27 11:31:13
合計ジャッジ時間 157,348 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,725 ms
394,476 KB
testcase_01 AC 1,731 ms
395,004 KB
testcase_02 AC 2,199 ms
410,712 KB
testcase_03 AC 2,197 ms
412,932 KB
testcase_04 AC 2,184 ms
411,172 KB
testcase_05 AC 2,150 ms
407,312 KB
testcase_06 AC 2,242 ms
411,524 KB
testcase_07 AC 1,947 ms
405,848 KB
testcase_08 AC 2,037 ms
404,812 KB
testcase_09 AC 2,133 ms
411,664 KB
testcase_10 AC 2,050 ms
405,844 KB
testcase_11 AC 1,947 ms
405,892 KB
testcase_12 AC 2,104 ms
410,060 KB
testcase_13 AC 2,184 ms
414,116 KB
testcase_14 AC 2,152 ms
409,336 KB
testcase_15 AC 2,282 ms
412,484 KB
testcase_16 AC 2,329 ms
417,020 KB
testcase_17 AC 1,965 ms
405,740 KB
testcase_18 AC 2,139 ms
408,984 KB
testcase_19 AC 2,055 ms
408,908 KB
testcase_20 AC 2,204 ms
416,264 KB
testcase_21 AC 2,178 ms
404,952 KB
testcase_22 AC 2,291 ms
419,804 KB
testcase_23 AC 2,339 ms
418,924 KB
testcase_24 AC 2,343 ms
418,684 KB
testcase_25 AC 2,367 ms
419,396 KB
testcase_26 AC 2,336 ms
418,532 KB
testcase_27 AC 2,363 ms
419,224 KB
testcase_28 AC 2,350 ms
418,052 KB
testcase_29 AC 2,330 ms
418,792 KB
testcase_30 AC 2,326 ms
418,508 KB
testcase_31 AC 2,326 ms
418,720 KB
testcase_32 AC 2,364 ms
418,944 KB
testcase_33 AC 2,365 ms
419,364 KB
testcase_34 AC 2,355 ms
418,692 KB
testcase_35 AC 2,357 ms
419,176 KB
testcase_36 AC 2,361 ms
418,100 KB
testcase_37 AC 2,345 ms
418,800 KB
testcase_38 AC 2,349 ms
418,512 KB
testcase_39 AC 2,375 ms
419,396 KB
testcase_40 AC 2,345 ms
418,972 KB
testcase_41 AC 2,332 ms
418,588 KB
testcase_42 AC 2,117 ms
413,028 KB
testcase_43 AC 2,106 ms
413,648 KB
testcase_44 AC 2,122 ms
413,268 KB
testcase_45 AC 2,101 ms
413,140 KB
testcase_46 AC 2,086 ms
413,236 KB
testcase_47 AC 1,991 ms
410,276 KB
testcase_48 AC 2,016 ms
410,412 KB
testcase_49 AC 2,005 ms
410,300 KB
testcase_50 AC 1,984 ms
410,532 KB
testcase_51 AC 1,982 ms
410,152 KB
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 AC 1,807 ms
403,748 KB
testcase_56 AC 1,824 ms
404,352 KB
testcase_57 AC 1,819 ms
404,212 KB
testcase_58 AC 1,822 ms
405,848 KB
testcase_59 AC 2,376 ms
425,308 KB
testcase_60 AC 1,952 ms
403,592 KB
testcase_61 AC 1,787 ms
404,096 KB
testcase_62 AC 1,762 ms
404,992 KB
testcase_63 AC 1,896 ms
403,968 KB
testcase_64 AC 1,873 ms
404,220 KB
testcase_65 AC 1,893 ms
404,608 KB
testcase_66 AC 1,809 ms
403,852 KB
testcase_67 AC 2,152 ms
404,096 KB
testcase_68 AC 1,825 ms
404,056 KB
testcase_69 AC 2,151 ms
403,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import random

n = int(input())
hash_ = [random.choices(range(1, 1 << 62), k=26) for _ in range(10 ** 6)]

se = [set() for _ in range(10 ** 6)]
for _ in range(n):
    S = input()
    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