結果

問題 No.145 yukiover
ユーザー yuruhiyayuruhiya
提出日時 2021-07-12 17:10:55
言語 Crystal
(1.11.2)
結果
AC  
実行時間 10 ms / 5,000 ms
コード長 441 bytes
コンパイル時間 11,696 ms
コンパイル使用メモリ 296,096 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-02 03:31:40
合計ジャッジ時間 12,733 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 10 ms
5,376 KB
testcase_13 AC 9 ms
5,376 KB
testcase_14 AC 9 ms
5,376 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 AC 9 ms
5,376 KB
testcase_18 AC 9 ms
5,376 KB
testcase_19 AC 9 ms
5,376 KB
testcase_20 AC 9 ms
5,376 KB
testcase_21 AC 9 ms
5,376 KB
testcase_22 AC 9 ms
5,376 KB
testcase_23 AC 9 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(cnt, ind)
  x = ind.tally.min_of { |elem, c| cnt[elem] // c }
  ind.each { |i| cnt[i] -= x }
  x
end

n = read_line.to_i
s = read_line
cnt = [s.count('z'), s.count('y'), s.count("v-x"), s.count('u'), s.count("l-t"), s.count('k'), s.count('j'), s.count('i'), s.count("a-h")]

puts [
  [0],
  [1, 2],
  [1, 3, 4],
  [1, 3, 5, 6],
  [1, 3, 5, 7, 8],
  [1, 3, 5, 7, 7],
  [1, 3, 5, 5],
  [1, 3, 3],
  [1, 1],
].sum { |ind|
  f(cnt, ind)
}
0