結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
65,152 KB
testcase_01 AC 59 ms
65,664 KB
testcase_02 AC 59 ms
65,280 KB
testcase_03 AC 57 ms
65,280 KB
testcase_04 AC 59 ms
65,536 KB
testcase_05 AC 58 ms
65,152 KB
testcase_06 AC 110 ms
78,652 KB
testcase_07 AC 88 ms
78,208 KB
testcase_08 AC 156 ms
84,736 KB
testcase_09 AC 184 ms
85,824 KB
testcase_10 AC 283 ms
92,276 KB
testcase_11 AC 374 ms
110,976 KB
testcase_12 AC 307 ms
96,180 KB
testcase_13 AC 219 ms
87,892 KB
testcase_14 AC 156 ms
83,248 KB
testcase_15 AC 96 ms
79,104 KB
testcase_16 AC 356 ms
108,052 KB
testcase_17 AC 179 ms
89,600 KB
testcase_18 AC 462 ms
111,080 KB
testcase_19 AC 354 ms
111,380 KB
testcase_20 AC 589 ms
111,360 KB
testcase_21 AC 228 ms
92,544 KB
testcase_22 AC 117 ms
80,488 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