結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,056 KB
testcase_01 AC 40 ms
52,252 KB
testcase_02 AC 39 ms
53,356 KB
testcase_03 AC 39 ms
53,364 KB
testcase_04 AC 38 ms
52,824 KB
testcase_05 AC 66 ms
64,904 KB
testcase_06 AC 68 ms
64,968 KB
testcase_07 AC 39 ms
52,688 KB
testcase_08 AC 64 ms
64,272 KB
testcase_09 AC 61 ms
65,096 KB
testcase_10 AC 82 ms
68,328 KB
testcase_11 AC 83 ms
67,596 KB
testcase_12 AC 38 ms
52,752 KB
testcase_13 AC 56 ms
64,872 KB
testcase_14 AC 77 ms
66,916 KB
testcase_15 AC 60 ms
65,756 KB
testcase_16 AC 70 ms
66,504 KB
testcase_17 AC 39 ms
53,332 KB
testcase_18 AC 53 ms
62,768 KB
testcase_19 AC 71 ms
65,740 KB
testcase_20 AC 67 ms
65,068 KB
testcase_21 AC 64 ms
65,216 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