結果
問題 | No.3015 アンチローリングハッシュ |
ユーザー | はむ吉🐹 |
提出日時 | 2016-04-10 19:59:16 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 1,761 ms / 2,000 ms |
コード長 | 1,002 bytes |
コンパイル時間 | 129 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 11,392 KB |
最終ジャッジ日時 | 2024-10-04 05:49:44 |
合計ジャッジ時間 | 8,776 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
11,392 KB |
testcase_01 | AC | 30 ms
11,264 KB |
testcase_02 | AC | 30 ms
11,136 KB |
testcase_03 | AC | 31 ms
11,008 KB |
testcase_04 | AC | 30 ms
11,136 KB |
testcase_05 | AC | 28 ms
11,136 KB |
testcase_06 | AC | 41 ms
11,008 KB |
testcase_07 | AC | 31 ms
11,136 KB |
testcase_08 | AC | 34 ms
11,136 KB |
testcase_09 | AC | 273 ms
11,264 KB |
testcase_10 | AC | 565 ms
11,136 KB |
testcase_11 | AC | 221 ms
11,136 KB |
testcase_12 | AC | 224 ms
11,136 KB |
testcase_13 | AC | 39 ms
11,136 KB |
testcase_14 | AC | 232 ms
11,264 KB |
testcase_15 | AC | 34 ms
11,136 KB |
testcase_16 | AC | 1,411 ms
11,136 KB |
testcase_17 | AC | 1,761 ms
11,392 KB |
testcase_18 | AC | 108 ms
11,136 KB |
testcase_19 | AC | 65 ms
11,136 KB |
testcase_20 | AC | 49 ms
11,136 KB |
testcase_21 | AC | 118 ms
11,392 KB |
testcase_22 | AC | 33 ms
11,136 KB |
ソースコード
#!/usr/bin/env python3 # -*- coding: utf-8 -*- import random import string MAX_L = 10 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()