結果

問題 No.2073 Concon Substrings (Swap Version)
ユーザー googol_S0googol_S0
提出日時 2022-09-16 21:28:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 368 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 122,248 KB
最終ジャッジ日時 2024-06-01 11:58:30
合計ジャッジ時間 4,900 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,012 KB
testcase_01 AC 40 ms
52,612 KB
testcase_02 AC 40 ms
53,148 KB
testcase_03 AC 40 ms
52,356 KB
testcase_04 AC 40 ms
53,100 KB
testcase_05 AC 95 ms
80,600 KB
testcase_06 AC 87 ms
80,776 KB
testcase_07 AC 41 ms
52,488 KB
testcase_08 AC 75 ms
78,348 KB
testcase_09 AC 80 ms
79,356 KB
testcase_10 AC 124 ms
112,116 KB
testcase_11 AC 124 ms
112,048 KB
testcase_12 AC 40 ms
52,312 KB
testcase_13 AC 58 ms
74,072 KB
testcase_14 AC 116 ms
107,684 KB
testcase_15 AC 76 ms
86,236 KB
testcase_16 AC 119 ms
122,144 KB
testcase_17 AC 41 ms
51,956 KB
testcase_18 AC 60 ms
75,112 KB
testcase_19 AC 118 ms
121,664 KB
testcase_20 AC 105 ms
111,352 KB
testcase_21 AC 96 ms
104,112 KB
testcase_22 AC 122 ms
122,152 KB
testcase_23 AC 42 ms
53,492 KB
testcase_24 AC 53 ms
64,524 KB
testcase_25 AC 103 ms
107,460 KB
testcase_26 AC 120 ms
122,248 KB
testcase_27 AC 39 ms
53,116 KB
testcase_28 AC 112 ms
116,372 KB
testcase_29 AC 75 ms
87,696 KB
testcase_30 AC 101 ms
107,808 KB
testcase_31 AC 79 ms
90,756 KB
testcase_32 AC 62 ms
80,108 KB
testcase_33 AC 67 ms
83,416 KB
testcase_34 AC 67 ms
82,300 KB
testcase_35 AC 93 ms
100,932 KB
testcase_36 AC 72 ms
84,824 KB
testcase_37 AC 89 ms
97,808 KB
testcase_38 AC 66 ms
82,444 KB
testcase_39 AC 95 ms
103,460 KB
testcase_40 AC 87 ms
98,228 KB
testcase_41 AC 92 ms
101,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())*3
S=input()
C=[[0,0,0],[0,0,0],[0,0,0]]
T='con'
for i in range(N):
  for j in range(3):
    if T[j]==S[i]:
      C[(i-j)%3][j]+=1
D=[min(C[i]) for i in range(3)]
v=0
x=[]
for i in range(3):
  for j in range(D[i]*3):
    x.append(i)
  x.append(-1)
x=x[:N]
P=[0]*3
for i in range(min(N,len(x))):
  if x[i]>=0:
    P[x[i]]+=1
print(P[0]//3+P[1]//3+P[2]//3)
0