結果
問題 | No.150 "良問"(良問とは言っていない |
ユーザー | siman |
提出日時 | 2016-03-23 18:27:38 |
言語 | Ruby (3.3.0) |
結果 |
AC
|
実行時間 | 345 ms / 5,000 ms |
コード長 | 905 bytes |
コンパイル時間 | 246 ms |
コンパイル使用メモリ | 7,680 KB |
実行使用メモリ | 13,348 KB |
最終ジャッジ日時 | 2024-10-11 02:00:59 |
合計ジャッジ時間 | 4,407 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 165 ms
12,672 KB |
testcase_01 | AC | 90 ms
12,032 KB |
testcase_02 | AC | 88 ms
12,288 KB |
testcase_03 | AC | 90 ms
12,288 KB |
testcase_04 | AC | 88 ms
12,160 KB |
testcase_05 | AC | 92 ms
12,416 KB |
testcase_06 | AC | 345 ms
12,544 KB |
testcase_07 | AC | 87 ms
12,032 KB |
testcase_08 | AC | 92 ms
12,288 KB |
testcase_09 | AC | 90 ms
12,288 KB |
testcase_10 | AC | 175 ms
12,800 KB |
testcase_11 | AC | 185 ms
12,672 KB |
testcase_12 | AC | 155 ms
12,672 KB |
testcase_13 | AC | 185 ms
12,672 KB |
testcase_14 | AC | 207 ms
13,056 KB |
testcase_15 | AC | 200 ms
13,056 KB |
testcase_16 | AC | 99 ms
12,160 KB |
testcase_17 | AC | 122 ms
12,544 KB |
testcase_18 | AC | 199 ms
13,056 KB |
testcase_19 | AC | 221 ms
13,348 KB |
testcase_20 | AC | 228 ms
13,320 KB |
コンパイルメッセージ
Syntax OK
ソースコード
class Yukicoder def initialize t = gets.to_i @cache_good = Hash.new @cache_problem = Hash.new t.times do s = gets.chomp size = s.size min_dist = Float::INFINITY 0.upto(size - 7) do |i| dist1 = calc_dist_good(s[i..i+3]) (i+4).upto(size - 7) do |j| dist2 = calc_dist_problem(s[j..j+6]) min_dist = [min_dist, dist1 + dist2].min end end puts min_dist end end def calc_dist_good(str) return @cache_good[str] if @cache_good[str] dist = 0 0.upto(3) do |index| dist += 1 if str[index] != 'good'[index] end @cache_good[str] = dist end def calc_dist_problem(str) return @cache_problem[str] if @cache_problem[str] dist = 0 0.upto(6) do |index| dist += 1 if str[index] != 'problem'[index] end @cache_problem[str] = dist end end Yukicoder.new