結果

問題 No.2102 [Cherry Alpha *] Conditional Reflection
ユーザー vwxyzvwxyz
提出日時 2023-09-12 01:42:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,811 ms / 3,000 ms
コード長 533 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 147,260 KB
最終ジャッジ日時 2024-06-29 14:56:04
合計ジャッジ時間 145,205 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 1,289 ms
49,096 KB
testcase_03 AC 1,574 ms
51,956 KB
testcase_04 AC 1,309 ms
49,048 KB
testcase_05 AC 937 ms
21,060 KB
testcase_06 AC 1,396 ms
49,072 KB
testcase_07 AC 2,266 ms
89,504 KB
testcase_08 AC 383 ms
11,648 KB
testcase_09 AC 1,684 ms
88,744 KB
testcase_10 AC 638 ms
20,080 KB
testcase_11 AC 610 ms
29,940 KB
testcase_12 AC 1,107 ms
49,060 KB
testcase_13 AC 1,906 ms
88,464 KB
testcase_14 AC 1,128 ms
29,780 KB
testcase_15 AC 1,588 ms
49,004 KB
testcase_16 AC 2,213 ms
87,900 KB
testcase_17 AC 1,427 ms
53,640 KB
testcase_18 AC 2,150 ms
89,504 KB
testcase_19 AC 806 ms
29,768 KB
testcase_20 AC 2,045 ms
88,452 KB
testcase_21 AC 670 ms
14,208 KB
testcase_22 AC 2,393 ms
88,196 KB
testcase_23 AC 2,366 ms
88,096 KB
testcase_24 AC 2,388 ms
88,180 KB
testcase_25 AC 2,398 ms
88,128 KB
testcase_26 AC 2,372 ms
88,104 KB
testcase_27 AC 2,387 ms
88,012 KB
testcase_28 AC 2,370 ms
88,016 KB
testcase_29 AC 2,355 ms
88,008 KB
testcase_30 AC 2,348 ms
88,140 KB
testcase_31 AC 2,327 ms
88,180 KB
testcase_32 AC 2,349 ms
88,092 KB
testcase_33 AC 2,366 ms
88,024 KB
testcase_34 AC 2,409 ms
88,132 KB
testcase_35 AC 2,376 ms
88,184 KB
testcase_36 AC 2,345 ms
88,068 KB
testcase_37 AC 2,360 ms
88,176 KB
testcase_38 AC 2,399 ms
88,128 KB
testcase_39 AC 2,372 ms
88,204 KB
testcase_40 AC 2,372 ms
88,088 KB
testcase_41 AC 2,297 ms
88,096 KB
testcase_42 AC 2,296 ms
32,676 KB
testcase_43 AC 2,276 ms
32,676 KB
testcase_44 AC 2,268 ms
32,804 KB
testcase_45 AC 2,235 ms
32,804 KB
testcase_46 AC 2,280 ms
32,804 KB
testcase_47 AC 2,471 ms
90,592 KB
testcase_48 AC 2,482 ms
90,548 KB
testcase_49 AC 2,482 ms
90,716 KB
testcase_50 AC 2,517 ms
90,592 KB
testcase_51 AC 2,454 ms
90,720 KB
testcase_52 AC 2,793 ms
147,260 KB
testcase_53 AC 2,811 ms
147,036 KB
testcase_54 AC 2,744 ms
147,212 KB
testcase_55 AC 2,699 ms
89,544 KB
testcase_56 AC 2,704 ms
89,720 KB
testcase_57 AC 2,734 ms
89,640 KB
testcase_58 AC 2,396 ms
40,144 KB
testcase_59 AC 2,309 ms
87,452 KB
testcase_60 AC 614 ms
10,752 KB
testcase_61 AC 2,721 ms
89,700 KB
testcase_62 AC 103 ms
11,648 KB
testcase_63 AC 2,166 ms
11,008 KB
testcase_64 AC 2,198 ms
11,008 KB
testcase_65 AC 2,254 ms
11,776 KB
testcase_66 AC 2,710 ms
89,656 KB
testcase_67 AC 2,026 ms
10,880 KB
testcase_68 AC 2,285 ms
11,008 KB
testcase_69 AC 2,004 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.readline

N=int(readline())
se=set()
base=1000
mod=(1<<121)-1
for n in range(N):
    S=readline().rstrip()
    le=len(S)
    pow_base=[1]
    for i in range(le-1):
        pow_base.append(pow_base[-1]*base%mod)
    h=sum(ord(S[i])*pow_base[i] for i in range(le))%mod
    if h in se:
        ans="Yes"
    else:
        ans="No"
    print(ans)
    se.add(h)
    for i in range(le-1):
        se.add((h-ord(S[i])*pow_base[i]-ord(S[i+1])*pow_base[i+1]+ord(S[i])*pow_base[i+1]+ord(S[i+1])*pow_base[i])%mod)
0