結果

問題 No.3015 アンチローリングハッシュ
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-04-12 21:49:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 403 ms / 2,000 ms
コード長 846 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 81,816 KB
実行使用メモリ 111,016 KB
最終ジャッジ日時 2024-10-04 07:23:00
合計ジャッジ時間 5,213 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
65,956 KB
testcase_01 AC 50 ms
66,440 KB
testcase_02 AC 52 ms
66,096 KB
testcase_03 AC 52 ms
66,512 KB
testcase_04 AC 56 ms
66,980 KB
testcase_05 AC 52 ms
65,736 KB
testcase_06 AC 86 ms
79,176 KB
testcase_07 AC 82 ms
74,772 KB
testcase_08 AC 134 ms
85,528 KB
testcase_09 AC 183 ms
86,168 KB
testcase_10 AC 203 ms
92,572 KB
testcase_11 AC 403 ms
109,972 KB
testcase_12 AC 225 ms
96,436 KB
testcase_13 AC 157 ms
86,604 KB
testcase_14 AC 131 ms
82,976 KB
testcase_15 AC 90 ms
78,948 KB
testcase_16 AC 318 ms
107,764 KB
testcase_17 AC 173 ms
87,216 KB
testcase_18 AC 292 ms
110,964 KB
testcase_19 AC 371 ms
110,916 KB
testcase_20 AC 284 ms
111,016 KB
testcase_21 AC 215 ms
92,808 KB
testcase_22 AC 95 ms
80,280 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