結果
問題 | No.2073 Concon Substrings (Swap Version) |
ユーザー | roaris |
提出日時 | 2022-09-16 22:39:22 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 642 bytes |
コンパイル時間 | 257 ms |
コンパイル使用メモリ | 82,264 KB |
実行使用メモリ | 69,336 KB |
最終ジャッジ日時 | 2024-06-01 13:41:42 |
合計ジャッジ時間 | 3,895 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
53,852 KB |
testcase_01 | AC | 43 ms
54,520 KB |
testcase_02 | AC | 43 ms
54,476 KB |
testcase_03 | AC | 42 ms
54,308 KB |
testcase_04 | AC | 43 ms
54,396 KB |
testcase_05 | AC | 65 ms
67,336 KB |
testcase_06 | AC | 67 ms
67,572 KB |
testcase_07 | AC | 42 ms
55,260 KB |
testcase_08 | AC | 59 ms
67,268 KB |
testcase_09 | AC | 61 ms
65,920 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 43 ms
55,596 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 42 ms
53,852 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
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 | - |
ソースコード
import sys input = sys.stdin.readline from collections import * N = int(input()) S = input()[:-1] c = [0, 0, 0] o = [0, 0, 0] n = [0, 0, 0] for i in range(3*N): if S[i]=='c': c[i%3] += 1 elif S[i]=='o': o[i%3] += 1 elif S[i]=='n': n[i%3] += 1 ans = 0 now = 0 for _ in range(min(c[0], o[1], n[2])): if now+3<=3*N: now += 3 ans += 1 now += 1 for _ in range(min(c[1], o[2], n[0])): if now+3<=3*N: now += 3 ans += 1 now += 1 for _ in range(min(c[2], o[0], n[1])): if now+3<=3*N: now += 3 ans += 1 now += 1 print(ans)