結果

問題 No.3015 アンチローリングハッシュ
ユーザー vwxyzvwxyz
提出日時 2022-10-18 10:18:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 448 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 108,672 KB
最終ジャッジ日時 2024-06-28 19:26:42
合計ジャッジ時間 4,615 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
108,672 KB
testcase_01 AC 136 ms
102,656 KB
testcase_02 AC 131 ms
104,320 KB
testcase_03 AC 136 ms
99,968 KB
testcase_04 AC 153 ms
99,264 KB
testcase_05 AC 121 ms
105,444 KB
testcase_06 AC 137 ms
96,748 KB
testcase_07 AC 145 ms
94,048 KB
testcase_08 AC 165 ms
96,768 KB
testcase_09 AC 145 ms
92,116 KB
testcase_10 AC 158 ms
94,720 KB
testcase_11 AC 160 ms
96,384 KB
testcase_12 AC 160 ms
94,464 KB
testcase_13 AC 145 ms
93,312 KB
testcase_14 AC 140 ms
91,392 KB
testcase_15 AC 143 ms
96,896 KB
testcase_16 AC 156 ms
95,752 KB
testcase_17 AC 146 ms
94,336 KB
testcase_18 AC 137 ms
93,384 KB
testcase_19 AC 137 ms
91,008 KB
testcase_20 AC 145 ms
99,480 KB
testcase_21 AC 145 ms
93,128 KB
testcase_22 AC 150 ms
102,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import sys
readline=sys.stdin.readline

A,B=map(int,readline().split())
alp=[chr(i) for i in range(97,97+26)]
S=[[] for b in range(B)]
for a in alp:
    for b in alp:
        for c in alp:
            for d in alp:
                S[(ord(a)*pow(A,3,B)%B+ord(b)*pow(A,2,B)%B+ord(c)*A%B+ord(d))%B].append(a+b+c+d)
for b in range(B):
    if len(S[b])>=2:
        print(S[b][0])
        print(S[b][1])
        exit()
0