結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー taiga0629kyoprotaiga0629kyopro
提出日時 2022-09-16 21:37:39
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 240 bytes
コンパイル時間 349 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 104,584 KB
最終ジャッジ日時 2024-12-21 18:39:09
合計ジャッジ時間 6,141 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,152 KB
testcase_01 AC 36 ms
52,688 KB
testcase_02 AC 35 ms
52,612 KB
testcase_03 AC 33 ms
52,272 KB
testcase_04 AC 33 ms
52,192 KB
testcase_05 AC 173 ms
104,308 KB
testcase_06 AC 170 ms
104,148 KB
testcase_07 AC 34 ms
52,080 KB
testcase_08 AC 124 ms
93,588 KB
testcase_09 AC 142 ms
95,436 KB
testcase_10 AC 170 ms
104,508 KB
testcase_11 AC 168 ms
104,584 KB
testcase_12 AC 34 ms
53,284 KB
testcase_13 AC 52 ms
67,040 KB
testcase_14 AC 151 ms
100,208 KB
testcase_15 AC 81 ms
83,608 KB
testcase_16 AC 169 ms
104,288 KB
testcase_17 AC 38 ms
52,548 KB
testcase_18 AC 51 ms
67,124 KB
testcase_19 AC 164 ms
103,092 KB
testcase_20 AC 135 ms
96,348 KB
testcase_21 AC 124 ms
92,960 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 #

n=int(input())
s=list(input())
from _collections import defaultdict
cnt=defaultdict(int)
for i in range(3*n):
    cnt[i%3,s[i]]+=1
ans=0
for j in range(3):
    res=min(cnt[j,"c"],cnt[(j+1)%3,"o"],cnt[(j+2)%3,"n"])
    ans+=res
print(ans)

0