結果

問題 No.6 使いものにならないハッシュ
ユーザー finefine
提出日時 2016-03-31 20:16:38
言語 Ruby
(3.3.0)
結果
AC  
実行時間 263 ms / 5,000 ms
コード長 448 bytes
コンパイル時間 50 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-09-16 16:33:11
合計ジャッジ時間 6,559 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
12,288 KB
testcase_01 AC 93 ms
12,288 KB
testcase_02 AC 249 ms
13,056 KB
testcase_03 AC 123 ms
12,544 KB
testcase_04 AC 129 ms
12,672 KB
testcase_05 AC 137 ms
12,672 KB
testcase_06 AC 183 ms
12,672 KB
testcase_07 AC 144 ms
12,672 KB
testcase_08 AC 173 ms
12,416 KB
testcase_09 AC 119 ms
12,544 KB
testcase_10 AC 96 ms
12,288 KB
testcase_11 AC 125 ms
12,544 KB
testcase_12 AC 205 ms
12,800 KB
testcase_13 AC 110 ms
12,416 KB
testcase_14 AC 125 ms
12,544 KB
testcase_15 AC 179 ms
12,800 KB
testcase_16 AC 150 ms
12,672 KB
testcase_17 AC 215 ms
12,800 KB
testcase_18 AC 263 ms
12,800 KB
testcase_19 AC 207 ms
12,800 KB
testcase_20 AC 198 ms
12,672 KB
testcase_21 AC 109 ms
12,672 KB
testcase_22 AC 207 ms
12,544 KB
testcase_23 AC 199 ms
12,800 KB
testcase_24 AC 205 ms
12,672 KB
testcase_25 AC 152 ms
12,672 KB
testcase_26 AC 229 ms
12,800 KB
testcase_27 AC 186 ms
12,672 KB
testcase_28 AC 162 ms
12,672 KB
testcase_29 AC 237 ms
12,928 KB
testcase_30 AC 217 ms
12,928 KB
testcase_31 AC 208 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'prime'

k,n = STDIN.map(&:to_i)
a = []
b = []
max = 0
ans = 0
k.upto(n){|x|
    unless x.prime?
        next
    end
    a.push(x)
    b.push(x % 9)
    tmp = c = 0
    (-1).downto(-9){|i|
        unless b[i]
            break
        end
        if tmp[b[i]] == 0
            tmp |= (1 << b[i])
            c += 1
        else
            break
        end
        }
    if max <= c
        max = c
        ans = a[-c]
    end
    }
p ans
0