結果

問題 No.6 使いものにならないハッシュ
ユーザー TANIGUCHI KousukeTANIGUCHI Kousuke
提出日時 2015-07-29 14:25:51
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 836 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 13,312 KB
最終ジャッジ日時 2024-07-17 22:05:45
合計ジャッジ時間 7,151 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 92 ms
12,288 KB
testcase_02 AC 214 ms
13,184 KB
testcase_03 AC 115 ms
12,544 KB
testcase_04 AC 123 ms
12,672 KB
testcase_05 AC 136 ms
12,672 KB
testcase_06 WA -
testcase_07 AC 142 ms
12,928 KB
testcase_08 AC 157 ms
13,312 KB
testcase_09 AC 133 ms
12,928 KB
testcase_10 AC 87 ms
12,288 KB
testcase_11 AC 113 ms
12,672 KB
testcase_12 AC 186 ms
13,056 KB
testcase_13 AC 131 ms
13,056 KB
testcase_14 AC 140 ms
13,056 KB
testcase_15 AC 165 ms
13,056 KB
testcase_16 WA -
testcase_17 AC 182 ms
12,928 KB
testcase_18 AC 213 ms
13,184 KB
testcase_19 AC 178 ms
13,056 KB
testcase_20 AC 179 ms
13,056 KB
testcase_21 AC 103 ms
12,800 KB
testcase_22 WA -
testcase_23 AC 179 ms
13,056 KB
testcase_24 AC 175 ms
13,056 KB
testcase_25 AC 158 ms
13,056 KB
testcase_26 AC 221 ms
13,056 KB
testcase_27 WA -
testcase_28 AC 144 ms
12,672 KB
testcase_29 AC 192 ms
13,056 KB
testcase_30 AC 191 ms
13,184 KB
testcase_31 AC 175 ms
13,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# Here your code !
require 'prime'

def xxx_hash(n)
    if n < 10
        n
    else
        xxx_hash(n.to_s.chars.map(&:to_i).inject(0) {|s,v| s+v})
    end
end

l,h = 2.times.map { gets.to_i }
primes = Prime.each(h).select {|prime|  prime >= l}
puts primes.each_with_index.each_with_object({primes: [], hashes: [], max: 0, head: 0}) {|(v,i),s|
    hash = xxx_hash(v)
    
    if s[:hashes].include?(hash)
        offset = s[:hashes].index(hash)
        s[:hashes] = s[:hashes].drop(offset + 1)
        s[:primes] = s[:primes].drop(offset + 1)
        s[:hashes].push(hash)
        s[:primes].push(v)
    else
        s[:primes].push(v)
        s[:hashes].push(hash)
        
        if s[:hashes].size >= s[:max]
            s[:max] = s[:hashes].size
            s[:head] = s[:primes].first
        end
        
    end
    
}[:head]
0