結果

問題 No.3015 アンチローリングハッシュ
ユーザー maimai
提出日時 2019-02-19 23:32:50
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 227 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-10-13 04:46:56
合計ジャッジ時間 6,362 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
17,408 KB
testcase_01 AC 83 ms
12,032 KB
testcase_02 AC 81 ms
11,904 KB
testcase_03 AC 97 ms
12,160 KB
testcase_04 AC 95 ms
12,160 KB
testcase_05 AC 83 ms
12,032 KB
testcase_06 AC 134 ms
12,288 KB
testcase_07 AC 132 ms
12,416 KB
testcase_08 AC 199 ms
13,568 KB
testcase_09 AC 627 ms
13,824 KB
testcase_10 TLE -
testcase_11 -- -
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