結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー lloyzlloyz
提出日時 2023-08-02 00:34:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 624 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 104,808 KB
最終ジャッジ日時 2024-10-11 20:09:33
合計ジャッジ時間 5,760 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,376 KB
testcase_01 AC 46 ms
53,376 KB
testcase_02 AC 46 ms
53,376 KB
testcase_03 AC 46 ms
53,376 KB
testcase_04 AC 46 ms
53,504 KB
testcase_05 AC 129 ms
104,664 KB
testcase_06 AC 134 ms
104,672 KB
testcase_07 AC 45 ms
53,248 KB
testcase_08 AC 107 ms
94,080 KB
testcase_09 AC 116 ms
98,124 KB
testcase_10 AC 129 ms
104,800 KB
testcase_11 AC 130 ms
104,804 KB
testcase_12 AC 44 ms
53,504 KB
testcase_13 AC 57 ms
65,408 KB
testcase_14 AC 119 ms
100,724 KB
testcase_15 AC 82 ms
83,968 KB
testcase_16 AC 127 ms
104,808 KB
testcase_17 AC 46 ms
53,248 KB
testcase_18 AC 58 ms
65,536 KB
testcase_19 AC 126 ms
103,524 KB
testcase_20 AC 110 ms
93,568 KB
testcase_21 AC 102 ms
92,928 KB
testcase_22 AC 129 ms
104,552 KB
testcase_23 AC 46 ms
53,248 KB
testcase_24 AC 51 ms
60,544 KB
testcase_25 AC 105 ms
94,592 KB
testcase_26 AC 130 ms
104,680 KB
testcase_27 AC 45 ms
53,504 KB
testcase_28 AC 117 ms
99,556 KB
testcase_29 AC 71 ms
75,648 KB
testcase_30 AC 107 ms
95,104 KB
testcase_31 AC 84 ms
85,120 KB
testcase_32 AC 60 ms
67,840 KB
testcase_33 AC 63 ms
70,784 KB
testcase_34 AC 63 ms
69,376 KB
testcase_35 AC 96 ms
90,624 KB
testcase_36 AC 65 ms
71,936 KB
testcase_37 AC 97 ms
89,856 KB
testcase_38 AC 62 ms
69,248 KB
testcase_39 AC 101 ms
92,160 KB
testcase_40 AC 96 ms
89,728 KB
testcase_41 AC 101 ms
91,904 KB
権限があれば一括ダウンロードができます

ソースコード

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 = []
for i in range(3):
    ANS.append(min(C[i % 3]['c'], C[(i + 1) % 3]['o'], C[(i + 2) % 3]['n']))
ans = sum(ANS)
if ans == n:
    if ANS[0] != n:
        ans -= 1
print(ans)
0