結果
問題 | No.2073 Concon Substrings (Swap Version) |
ユーザー | dn6049949 |
提出日時 | 2022-09-16 22:27:12 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 997 bytes |
コンパイル時間 | 251 ms |
コンパイル使用メモリ | 82,372 KB |
実行使用メモリ | 77,280 KB |
最終ジャッジ日時 | 2024-12-21 21:42:02 |
合計ジャッジ時間 | 4,291 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
54,528 KB |
testcase_01 | AC | 46 ms
54,528 KB |
testcase_02 | AC | 46 ms
55,040 KB |
testcase_03 | AC | 46 ms
54,912 KB |
testcase_04 | AC | 47 ms
54,912 KB |
testcase_05 | AC | 72 ms
76,916 KB |
testcase_06 | AC | 75 ms
77,280 KB |
testcase_07 | AC | 47 ms
55,040 KB |
testcase_08 | AC | 68 ms
76,416 KB |
testcase_09 | AC | 71 ms
76,672 KB |
testcase_10 | AC | 83 ms
76,928 KB |
testcase_11 | AC | 82 ms
77,012 KB |
testcase_12 | AC | 48 ms
54,272 KB |
testcase_13 | AC | 58 ms
65,280 KB |
testcase_14 | AC | 79 ms
76,800 KB |
testcase_15 | AC | 63 ms
69,376 KB |
testcase_16 | AC | 72 ms
77,184 KB |
testcase_17 | AC | 47 ms
54,400 KB |
testcase_18 | AC | 56 ms
64,000 KB |
testcase_19 | AC | 74 ms
76,852 KB |
testcase_20 | AC | 71 ms
76,464 KB |
testcase_21 | AC | 70 ms
76,472 KB |
testcase_22 | AC | 75 ms
77,056 KB |
testcase_23 | AC | 47 ms
54,400 KB |
testcase_24 | AC | 55 ms
62,592 KB |
testcase_25 | AC | 69 ms
76,544 KB |
testcase_26 | AC | 76 ms
76,992 KB |
testcase_27 | AC | 47 ms
54,912 KB |
testcase_28 | AC | 71 ms
76,800 KB |
testcase_29 | AC | 58 ms
68,096 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 | - |
ソースコード
from collections import defaultdict, deque from heapq import heappush, heappop from itertools import permutations, accumulate import sys import math import bisect def LI(): return [int(x) for x in sys.stdin.readline().split()] def I(): return int(sys.stdin.readline()) def IR(n): return [I() for _ in range(n)] def LIR(n): return [LI() for _ in range(n)] sys.setrecursionlimit(1000000) mod = 1000000007 def main(): n = I() s = input() count_c = [0]*3 count_o = [0]*3 count_n = [0]*3 for i,si in enumerate(s): if si == "c": count_c[i%3] += 1 elif si == "o": count_o[i%3] += 1 elif si == "n": count_n[i%3] += 1 c = [count_c, count_o, count_n] ans = 0 for i in range(3): m = float("inf") for j in range(3): m = min(m, c[j][(i+j)%3]) if m == n and i != 0: m = n-1 ans += m print(ans) return if __name__ == "__main__": main()