結果

問題 No.3015 アンチローリングハッシュ
ユーザー kokoa1046kokoa1046
提出日時 2018-01-30 09:57:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,327 ms / 2,000 ms
コード長 845 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,916 KB
最終ジャッジ日時 2024-06-09 11:46:03
合計ジャッジ時間 12,614 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
11,264 KB
testcase_01 AC 36 ms
11,136 KB
testcase_02 AC 32 ms
11,264 KB
testcase_03 AC 35 ms
11,136 KB
testcase_04 AC 35 ms
11,264 KB
testcase_05 AC 31 ms
11,136 KB
testcase_06 AC 45 ms
11,392 KB
testcase_07 AC 39 ms
11,264 KB
testcase_08 AC 273 ms
16,360 KB
testcase_09 AC 293 ms
15,724 KB
testcase_10 AC 544 ms
21,076 KB
testcase_11 AC 923 ms
30,784 KB
testcase_12 AC 674 ms
21,700 KB
testcase_13 AC 508 ms
16,748 KB
testcase_14 AC 176 ms
14,956 KB
testcase_15 AC 41 ms
11,520 KB
testcase_16 AC 878 ms
30,788 KB
testcase_17 AC 596 ms
17,772 KB
testcase_18 AC 1,217 ms
30,916 KB
testcase_19 AC 1,327 ms
30,912 KB
testcase_20 AC 967 ms
30,912 KB
testcase_21 AC 581 ms
21,132 KB
testcase_22 AC 110 ms
14,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env pypy3
# -*- coding: utf-8 -*-

import itertools
import random
import string


MAX_L = 6


def compute_hash(s, a, b):
    h = 0
    n = len(s)
    for i, c in enumerate(s):
        h += ((ord(c) % b) * pow(a, n - 1 - i, b)) % b
        h %= b
    return h


def generate_random_string(digits, source=string.ascii_lowercase):
    return "".join(random.choice(source) for _ in range(digits))


def birthday_attack(a, b, digits=MAX_L):
    candidates = {generate_random_string(digits) for _ in range(2 * b)}
    f = lambda x: compute_hash(x, a, b)
    for s, t in itertools.combinations(candidates, r=2):
        if f(s) == f(t):
            return s, t
    else:
        assert False


def main():
    a, b = map(int, input().split())
    s, t = birthday_attack(a, b)
    print(s)
    print(t)


if __name__ == '__main__':
    main()
0