結果
問題 | No.3015 アンチローリングハッシュ |
ユーザー | はむ吉🐹 |
提出日時 | 2016-04-10 19:57:04 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,007 bytes |
コンパイル時間 | 106 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 18,988 KB |
最終ジャッジ日時 | 2024-10-04 05:49:31 |
合計ジャッジ時間 | 11,510 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 591 ms
18,804 KB |
testcase_01 | TLE | - |
testcase_02 | AC | 141 ms
11,864 KB |
testcase_03 | TLE | - |
testcase_04 | AC | 679 ms
12,124 KB |
testcase_05 | AC | 120 ms
11,776 KB |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
ソースコード
#!/usr/bin/env python3 # -*- coding: utf-8 -*- import random import string MAX_L = 10 ** 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 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()