結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー ntudantuda
提出日時 2022-09-18 19:23:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 363 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 104,604 KB
最終ジャッジ日時 2024-06-01 15:42:57
合計ジャッジ時間 4,746 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 38 ms
52,608 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 92 ms
103,968 KB
testcase_06 AC 95 ms
103,912 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 77 ms
93,568 KB
testcase_09 AC 85 ms
97,024 KB
testcase_10 AC 104 ms
104,604 KB
testcase_11 AC 105 ms
104,188 KB
testcase_12 AC 38 ms
51,840 KB
testcase_13 AC 52 ms
65,920 KB
testcase_14 AC 98 ms
99,860 KB
testcase_15 AC 61 ms
75,648 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 97 ms
103,984 KB
testcase_23 AC 39 ms
51,996 KB
testcase_24 AC 47 ms
60,288 KB
testcase_25 AC 84 ms
94,208 KB
testcase_26 AC 99 ms
104,184 KB
testcase_27 AC 39 ms
52,224 KB
testcase_28 AC 90 ms
96,980 KB
testcase_29 AC 57 ms
73,088 KB
testcase_30 AC 81 ms
95,204 KB
testcase_31 AC 58 ms
74,496 KB
testcase_32 AC 52 ms
66,176 KB
testcase_33 AC 54 ms
67,968 KB
testcase_34 AC 54 ms
68,736 KB
testcase_35 AC 80 ms
90,132 KB
testcase_36 AC 56 ms
70,528 KB
testcase_37 AC 79 ms
89,600 KB
testcase_38 AC 56 ms
68,352 KB
testcase_39 AC 83 ms
91,648 KB
testcase_40 AC 78 ms
89,596 KB
testcase_41 AC 80 ms
91,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()
X = [[0] * 3 for _ in range(3)]
for i, c in enumerate(list(S)):
    if c == "c":
        X[i % 3][0] += 1
    if c == "o":
        X[(i - 1) % 3][1] += 1
    if c == "n":
        X[(i - 2) % 3][2] += 1
ans = 0
usable = 3 * N
for i in range(3):
    tmp = min(min(X[i]), usable // 3)
    ans += tmp
    usable -= 3 * tmp + 1
print(ans)
0