結果

問題 No.3015 アンチローリングハッシュ
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-04-10 20:03:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 521 ms / 2,000 ms
コード長 1,000 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 81,456 KB
最終ジャッジ日時 2024-10-04 05:51:38
合計ジャッジ時間 6,247 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
66,788 KB
testcase_01 AC 52 ms
66,352 KB
testcase_02 AC 51 ms
67,060 KB
testcase_03 AC 55 ms
66,316 KB
testcase_04 AC 56 ms
67,712 KB
testcase_05 AC 52 ms
65,836 KB
testcase_06 AC 96 ms
75,600 KB
testcase_07 AC 58 ms
70,276 KB
testcase_08 AC 102 ms
78,736 KB
testcase_09 AC 192 ms
80,204 KB
testcase_10 AC 175 ms
79,704 KB
testcase_11 AC 287 ms
81,456 KB
testcase_12 AC 521 ms
81,360 KB
testcase_13 AC 98 ms
78,364 KB
testcase_14 AC 186 ms
79,952 KB
testcase_15 AC 95 ms
78,832 KB
testcase_16 AC 103 ms
78,588 KB
testcase_17 AC 282 ms
80,740 KB
testcase_18 AC 128 ms
80,084 KB
testcase_19 AC 166 ms
79,252 KB
testcase_20 AC 207 ms
78,364 KB
testcase_21 AC 436 ms
80,340 KB
testcase_22 AC 64 ms
66,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import random
import string


MAX_L = 15


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 generate_random_pair(digits):
    s = ""
    t = ""
    while s == t:
        s = generate_random_string(digits)
        t = generate_random_string(digits)
    return s, t


def birthday_attack(a, b, digits_lim=MAX_L):
    hash_s = -1
    hash_t = -2
    f = lambda x: compute_hash(x, a, b)
    while hash_s != hash_t:
        d = random.randint(1, digits_lim)
        s, t = generate_random_pair(d)
        hash_s, hash_t = map(f, (s, t))
    return s, t


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


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