結果

問題 No.6 使いものにならないハッシュ
ユーザー 👑 hos.lyrichos.lyric
提出日時 2015-03-01 13:13:07
言語 Ruby
(3.3.0)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 176 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 13,184 KB
最終ジャッジ日時 2024-09-16 16:24:33
合計ジャッジ時間 5,160 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
12,288 KB
testcase_01 AC 94 ms
12,416 KB
testcase_02 AC 138 ms
13,056 KB
testcase_03 AC 108 ms
12,672 KB
testcase_04 AC 110 ms
12,672 KB
testcase_05 AC 111 ms
12,672 KB
testcase_06 AC 127 ms
13,056 KB
testcase_07 AC 128 ms
12,928 KB
testcase_08 AC 130 ms
12,928 KB
testcase_09 AC 131 ms
13,056 KB
testcase_10 AC 95 ms
12,160 KB
testcase_11 AC 105 ms
12,544 KB
testcase_12 AC 129 ms
13,056 KB
testcase_13 AC 127 ms
12,928 KB
testcase_14 AC 129 ms
12,928 KB
testcase_15 AC 130 ms
13,184 KB
testcase_16 AC 128 ms
13,056 KB
testcase_17 AC 135 ms
13,056 KB
testcase_18 AC 136 ms
13,056 KB
testcase_19 AC 132 ms
13,056 KB
testcase_20 AC 130 ms
13,056 KB
testcase_21 AC 101 ms
12,672 KB
testcase_22 AC 130 ms
13,056 KB
testcase_23 AC 126 ms
12,928 KB
testcase_24 AC 127 ms
12,928 KB
testcase_25 AC 125 ms
12,928 KB
testcase_26 AC 128 ms
13,056 KB
testcase_27 AC 126 ms
12,928 KB
testcase_28 AC 111 ms
12,672 KB
testcase_29 AC 134 ms
12,928 KB
testcase_30 AC 130 ms
12,928 KB
testcase_31 AC 138 ms
12,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require'prime'
k=gets.to_i
f=m=z=0
q=[]
Prime.each(gets.to_i){|x|
  x<k||(
    f-=1<<q.shift%9while f[x%9]>0
    q<<x
    f|=1<<x%9
    l=q.size
    m>l||(m=l;z=q[0])
  )
}
p z
0