結果

問題 No.3015 アンチローリングハッシュ
ユーザー 👑 KazunKazun
提出日時 2021-12-04 15:32:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 369 bytes
コンパイル時間 127 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 81,280 KB
最終ジャッジ日時 2024-07-06 21:41:01
合計ジャッジ時間 2,824 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
63,488 KB
testcase_01 AC 45 ms
63,488 KB
testcase_02 AC 45 ms
63,744 KB
testcase_03 AC 45 ms
63,872 KB
testcase_04 AC 47 ms
63,488 KB
testcase_05 AC 46 ms
63,360 KB
testcase_06 AC 46 ms
63,744 KB
testcase_07 AC 50 ms
63,872 KB
testcase_08 AC 49 ms
66,560 KB
testcase_09 AC 51 ms
67,584 KB
testcase_10 AC 77 ms
81,280 KB
testcase_11 AC 73 ms
80,792 KB
testcase_12 AC 62 ms
77,696 KB
testcase_13 AC 68 ms
78,976 KB
testcase_14 AC 64 ms
77,440 KB
testcase_15 AC 50 ms
66,432 KB
testcase_16 AC 73 ms
80,896 KB
testcase_17 AC 69 ms
79,616 KB
testcase_18 AC 48 ms
63,360 KB
testcase_19 AC 47 ms
63,744 KB
testcase_20 AC 47 ms
63,744 KB
testcase_21 AC 46 ms
63,744 KB
testcase_22 AC 45 ms
63,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def encode(S):
    X=0
    p=1
    for m in S[::-1]:
        X+=ord(m)*p; X%=b
        p*=a; p%=b
    return X

from string import ascii_lowercase as K
from itertools import product

a,b=map(int,input().split())
M={}
for S in product(K,repeat=4):
    S="".join(S)
    code=encode(S)
    if code in M:
        print(S)
        print(M[code])
        exit()
    M[code]=S
0