結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー Akijin_007Akijin_007
提出日時 2022-09-16 22:17:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 382 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 68,172 KB
最終ジャッジ日時 2024-12-21 21:29:37
合計ジャッジ時間 3,493 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,996 KB
testcase_01 AC 31 ms
52,632 KB
testcase_02 AC 33 ms
52,520 KB
testcase_03 AC 31 ms
52,988 KB
testcase_04 AC 32 ms
52,928 KB
testcase_05 AC 55 ms
65,980 KB
testcase_06 AC 58 ms
65,280 KB
testcase_07 AC 35 ms
52,316 KB
testcase_08 AC 54 ms
64,132 KB
testcase_09 AC 51 ms
65,252 KB
testcase_10 AC 74 ms
68,172 KB
testcase_11 AC 71 ms
67,944 KB
testcase_12 AC 32 ms
52,000 KB
testcase_13 AC 48 ms
64,532 KB
testcase_14 AC 66 ms
66,860 KB
testcase_15 AC 52 ms
65,004 KB
testcase_16 AC 63 ms
67,308 KB
testcase_17 AC 33 ms
52,128 KB
testcase_18 AC 45 ms
63,292 KB
testcase_19 AC 59 ms
65,748 KB
testcase_20 AC 54 ms
66,004 KB
testcase_21 AC 54 ms
66,252 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 #

#int(input())
#map(int, input().split())
#list(map(int, input().split()))

N = int(input())
S = input()
m = 3 * N

a = ("c", "o", "n")
c = [[0] * 3 for i in range(3)]

for i in range(m):
    if S[i] in a:
        t = a.index(S[i])
        c[i%3][t] += 1

ans = 0
for i in range(3):
    b = 1000000
    for j in range(3):
        b = min(c[(i+j)%3][j], b)
    ans += b

print(ans)


0