結果
問題 | No.2073 Concon Substrings (Swap Version) |
ユーザー | dn6049949 |
提出日時 | 2022-09-16 22:27:12 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 997 bytes |
コンパイル時間 | 298 ms |
コンパイル使用メモリ | 82,516 KB |
実行使用メモリ | 77,408 KB |
最終ジャッジ日時 | 2024-06-01 13:31:44 |
合計ジャッジ時間 | 4,059 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 45 ms
56,068 KB |
testcase_01 | AC | 47 ms
54,760 KB |
testcase_02 | AC | 45 ms
54,580 KB |
testcase_03 | AC | 46 ms
55,252 KB |
testcase_04 | AC | 45 ms
55,356 KB |
testcase_05 | AC | 70 ms
77,132 KB |
testcase_06 | AC | 77 ms
76,980 KB |
testcase_07 | AC | 46 ms
54,636 KB |
testcase_08 | AC | 65 ms
76,324 KB |
testcase_09 | AC | 66 ms
76,280 KB |
testcase_10 | AC | 81 ms
77,408 KB |
testcase_11 | AC | 79 ms
76,968 KB |
testcase_12 | AC | 44 ms
54,996 KB |
testcase_13 | AC | 56 ms
65,460 KB |
testcase_14 | AC | 78 ms
76,692 KB |
testcase_15 | AC | 61 ms
69,776 KB |
testcase_16 | AC | 71 ms
76,996 KB |
testcase_17 | AC | 44 ms
55,296 KB |
testcase_18 | AC | 53 ms
64,464 KB |
testcase_19 | AC | 71 ms
77,004 KB |
testcase_20 | AC | 67 ms
76,344 KB |
testcase_21 | AC | 68 ms
76,340 KB |
testcase_22 | AC | 73 ms
76,856 KB |
testcase_23 | AC | 45 ms
55,108 KB |
testcase_24 | AC | 54 ms
63,028 KB |
testcase_25 | AC | 66 ms
76,660 KB |
testcase_26 | AC | 71 ms
77,200 KB |
testcase_27 | AC | 46 ms
55,468 KB |
testcase_28 | AC | 69 ms
76,528 KB |
testcase_29 | AC | 56 ms
68,432 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()