結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
11,264 KB
testcase_01 AC 32 ms
11,008 KB
testcase_02 AC 35 ms
11,264 KB
testcase_03 AC 37 ms
11,008 KB
testcase_04 AC 35 ms
11,008 KB
testcase_05 AC 33 ms
11,008 KB
testcase_06 AC 47 ms
11,264 KB
testcase_07 AC 38 ms
11,264 KB
testcase_08 AC 237 ms
16,500 KB
testcase_09 AC 222 ms
15,724 KB
testcase_10 AC 478 ms
20,972 KB
testcase_11 AC 1,116 ms
30,920 KB
testcase_12 AC 621 ms
21,568 KB
testcase_13 AC 393 ms
16,876 KB
testcase_14 AC 191 ms
15,080 KB
testcase_15 AC 46 ms
11,264 KB
testcase_16 AC 794 ms
30,988 KB
testcase_17 AC 418 ms
17,684 KB
testcase_18 AC 906 ms
30,788 KB
testcase_19 AC 884 ms
31,044 KB
testcase_20 AC 748 ms
31,044 KB
testcase_21 AC 483 ms
21,100 KB
testcase_22 AC 102 ms
14,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import itertools
import random
import string


MAX_L = 5


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