結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー H20H20
提出日時 2022-09-16 22:52:35
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 271 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 104,872 KB
最終ジャッジ日時 2024-06-01 13:49:27
合計ジャッジ時間 4,929 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,276 KB
testcase_01 AC 43 ms
54,392 KB
testcase_02 AC 41 ms
54,484 KB
testcase_03 AC 44 ms
54,204 KB
testcase_04 AC 43 ms
54,740 KB
testcase_05 AC 126 ms
104,592 KB
testcase_06 AC 127 ms
104,772 KB
testcase_07 AC 42 ms
54,092 KB
testcase_08 AC 94 ms
94,232 KB
testcase_09 AC 104 ms
98,376 KB
testcase_10 AC 116 ms
104,580 KB
testcase_11 AC 115 ms
104,704 KB
testcase_12 AC 41 ms
55,420 KB
testcase_13 AC 51 ms
66,080 KB
testcase_14 AC 106 ms
100,500 KB
testcase_15 AC 71 ms
83,988 KB
testcase_16 AC 116 ms
104,652 KB
testcase_17 AC 42 ms
53,604 KB
testcase_18 AC 51 ms
67,204 KB
testcase_19 AC 112 ms
103,604 KB
testcase_20 AC 103 ms
93,888 KB
testcase_21 AC 89 ms
93,276 KB
testcase_22 AC 114 ms
104,872 KB
testcase_23 AC 41 ms
54,244 KB
testcase_24 AC 47 ms
61,328 KB
testcase_25 AC 93 ms
94,516 KB
testcase_26 AC 115 ms
104,740 KB
testcase_27 AC 42 ms
54,748 KB
testcase_28 AC 106 ms
99,536 KB
testcase_29 AC 65 ms
75,864 KB
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 #

import collections
N = int(input())
S = list(input())
C = [collections.Counter() for _ in range(3)]
for i,c in enumerate(S):
    C[i%3][c]+=1
print(min(C[0]['c'],C[1]['o'],C[2]['n'])+min(N-1,min(C[0]['o'],C[1]['n'],C[2]['c']))+min(N-1,min(C[0]['n'],C[1]['c'],C[2]['o'])))
0