結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー lloyzlloyz
提出日時 2023-08-02 00:31:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 271 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 104,952 KB
最終ジャッジ日時 2024-10-11 20:06:05
合計ジャッジ時間 5,503 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,632 KB
testcase_01 AC 41 ms
53,504 KB
testcase_02 AC 42 ms
53,504 KB
testcase_03 AC 42 ms
53,504 KB
testcase_04 AC 41 ms
53,504 KB
testcase_05 AC 119 ms
104,824 KB
testcase_06 AC 116 ms
104,732 KB
testcase_07 AC 42 ms
53,376 KB
testcase_08 AC 97 ms
94,208 KB
testcase_09 AC 107 ms
98,400 KB
testcase_10 AC 115 ms
104,864 KB
testcase_11 AC 115 ms
104,704 KB
testcase_12 AC 42 ms
53,760 KB
testcase_13 AC 50 ms
65,536 KB
testcase_14 AC 108 ms
100,484 KB
testcase_15 AC 71 ms
83,968 KB
testcase_16 AC 116 ms
104,708 KB
testcase_17 AC 41 ms
53,504 KB
testcase_18 AC 50 ms
65,408 KB
testcase_19 AC 112 ms
103,412 KB
testcase_20 AC 97 ms
94,208 KB
testcase_21 AC 92 ms
93,184 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

n = int(input())
S = list(input())

C = [defaultdict(int) for _ in range(3)]
for i in range(3 * n):
    C[i % 3][S[i]] += 1
ans = 0
for i in range(3):
    ans += min(C[i % 3]['c'], C[(i + 1) % 3]['o'], C[(i + 2) % 3]['n'])
print(ans)
0