結果

問題 No.3015 アンチローリングハッシュ
ユーザー maimai
提出日時 2019-02-19 23:32:50
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 227 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 17,792 KB
最終ジャッジ日時 2024-04-21 06:10:33
合計ジャッジ時間 5,488 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
17,792 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 86 ms
12,288 KB
testcase_04 AC 85 ms
12,160 KB
testcase_05 AC 80 ms
12,160 KB
testcase_06 AC 128 ms
12,416 KB
testcase_07 AC 89 ms
12,288 KB
testcase_08 AC 182 ms
13,824 KB
testcase_09 AC 421 ms
13,824 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

@a,@b = gets.split.map(&:to_i)

def h(s)
    s.bytes.reduce(0){|ha,c|(ha*@a+c)%@b}
end
def g
    99.times.map{rand(97..122)}.pack("c*")
end

loop do
    s,t = g,g
    if h(s) == h(t)
        puts [s,t]
        break
    end
end
0