結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー simansiman
提出日時 2022-09-21 02:17:44
言語 Ruby
(3.3.0)
結果
AC  
実行時間 338 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 13,440 KB
最終ジャッジ日時 2024-06-01 17:12:08
合計ジャッジ時間 9,699 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,288 KB
testcase_01 AC 89 ms
12,288 KB
testcase_02 AC 88 ms
12,160 KB
testcase_03 AC 88 ms
12,160 KB
testcase_04 AC 93 ms
12,032 KB
testcase_05 AC 335 ms
13,440 KB
testcase_06 AC 338 ms
13,440 KB
testcase_07 AC 88 ms
12,160 KB
testcase_08 AC 245 ms
13,056 KB
testcase_09 AC 281 ms
13,184 KB
testcase_10 AC 333 ms
13,312 KB
testcase_11 AC 332 ms
13,312 KB
testcase_12 AC 88 ms
12,032 KB
testcase_13 AC 115 ms
12,288 KB
testcase_14 AC 296 ms
13,056 KB
testcase_15 AC 164 ms
12,416 KB
testcase_16 AC 324 ms
13,312 KB
testcase_17 AC 90 ms
12,160 KB
testcase_18 AC 118 ms
12,288 KB
testcase_19 AC 316 ms
13,312 KB
testcase_20 AC 257 ms
13,184 KB
testcase_21 AC 230 ms
12,928 KB
testcase_22 AC 324 ms
13,440 KB
testcase_23 AC 88 ms
12,160 KB
testcase_24 AC 95 ms
12,288 KB
testcase_25 AC 238 ms
12,928 KB
testcase_26 AC 321 ms
13,312 KB
testcase_27 AC 89 ms
12,288 KB
testcase_28 AC 279 ms
13,184 KB
testcase_29 AC 154 ms
12,544 KB
testcase_30 AC 242 ms
12,928 KB
testcase_31 AC 169 ms
12,544 KB
testcase_32 AC 124 ms
12,416 KB
testcase_33 AC 134 ms
12,416 KB
testcase_34 AC 127 ms
12,288 KB
testcase_35 AC 209 ms
12,928 KB
testcase_36 AC 140 ms
12,416 KB
testcase_37 AC 203 ms
12,800 KB
testcase_38 AC 129 ms
12,544 KB
testcase_39 AC 222 ms
12,800 KB
testcase_40 AC 204 ms
12,672 KB
testcase_41 AC 218 ms
13,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
S = gets.chomp
L = S.size

counter = Array.new(3) { Hash.new(0) }

L.times do |i|
  s = S[i]

  counter[i % 3][s] += 1
end

p1 = [counter[0]['c'], counter[1]['o'], counter[2]['n']].min
p2 = [counter[1]['c'], counter[2]['o'], counter[0]['n']].min
p3 = [counter[2]['c'], counter[0]['o'], counter[1]['n']].min
ans = p1 + p2 + p3

if ans == N && p1 < N
  ans -= 1
end

puts ans
0