結果

問題 No.3015 アンチローリングハッシュ
ユーザー kokoa1046kokoa1046
提出日時 2018-01-30 09:57:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 435 ms / 2,000 ms
コード長 845 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 110,856 KB
最終ジャッジ日時 2024-06-09 11:46:30
合計ジャッジ時間 6,258 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
65,488 KB
testcase_01 AC 65 ms
65,408 KB
testcase_02 AC 67 ms
65,664 KB
testcase_03 AC 64 ms
65,152 KB
testcase_04 AC 64 ms
65,280 KB
testcase_05 AC 65 ms
65,024 KB
testcase_06 AC 150 ms
79,720 KB
testcase_07 AC 102 ms
74,240 KB
testcase_08 AC 182 ms
85,504 KB
testcase_09 AC 182 ms
86,144 KB
testcase_10 AC 240 ms
92,544 KB
testcase_11 AC 435 ms
110,592 KB
testcase_12 AC 275 ms
96,156 KB
testcase_13 AC 225 ms
88,064 KB
testcase_14 AC 159 ms
81,708 KB
testcase_15 AC 119 ms
79,104 KB
testcase_16 AC 373 ms
107,776 KB
testcase_17 AC 204 ms
87,236 KB
testcase_18 AC 385 ms
110,596 KB
testcase_19 AC 364 ms
110,856 KB
testcase_20 AC 368 ms
104,012 KB
testcase_21 AC 244 ms
93,056 KB
testcase_22 AC 121 ms
80,000 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