結果

問題 No.3015 アンチローリングハッシュ
ユーザー maimai
提出日時 2023-07-30 15:09:19
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 225 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-10-09 10:23:01
合計ジャッジ時間 5,499 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,416 KB
testcase_01 AC 85 ms
12,288 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 85 ms
12,288 KB
testcase_04 AC 86 ms
12,288 KB
testcase_05 AC 85 ms
12,032 KB
testcase_06 AC 92 ms
12,416 KB
testcase_07 AC 89 ms
12,288 KB
testcase_08 AC 106 ms
12,416 KB
testcase_09 AC 325 ms
12,544 KB
testcase_10 AC 285 ms
12,288 KB
testcase_11 AC 501 ms
12,544 KB
testcase_12 TLE -
testcase_13 AC 150 ms
12,672 KB
testcase_14 AC 121 ms
12,672 KB
testcase_15 AC 114 ms
12,800 KB
testcase_16 AC 739 ms
12,800 KB
testcase_17 AC 230 ms
12,544 KB
testcase_18 AC 200 ms
12,544 KB
testcase_19 AC 1,780 ms
12,672 KB
testcase_20 AC 109 ms
12,800 KB
testcase_21 AC 277 ms
12,672 KB
testcase_22 AC 97 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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
    9.times.map{rand(97..122)}.pack("c*")
end

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