結果

問題 No.1943 消えたAGCT(1)
ユーザー ikomaikoma
提出日時 2022-05-20 21:34:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 102 ms / 2,000 ms
コード長 292 bytes
コンパイル時間 250 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 106,580 KB
最終ジャッジ日時 2024-09-20 07:25:36
合計ジャッジ時間 2,885 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,712 KB
testcase_01 AC 33 ms
51,840 KB
testcase_02 AC 34 ms
52,096 KB
testcase_03 AC 34 ms
51,968 KB
testcase_04 AC 35 ms
51,968 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 33 ms
51,968 KB
testcase_07 AC 33 ms
52,216 KB
testcase_08 AC 36 ms
51,712 KB
testcase_09 AC 88 ms
102,336 KB
testcase_10 AC 78 ms
101,968 KB
testcase_11 AC 73 ms
93,804 KB
testcase_12 AC 91 ms
106,580 KB
testcase_13 AC 64 ms
83,200 KB
testcase_14 AC 44 ms
61,952 KB
testcase_15 AC 98 ms
104,752 KB
testcase_16 AC 88 ms
96,128 KB
testcase_17 AC 91 ms
99,776 KB
testcase_18 AC 102 ms
104,972 KB
testcase_19 AC 99 ms
105,868 KB
testcase_20 AC 98 ms
105,944 KB
testcase_21 AC 98 ms
105,564 KB
testcase_22 AC 99 ms
101,700 KB
testcase_23 AC 100 ms
101,376 KB
testcase_24 AC 69 ms
94,240 KB
testcase_25 AC 71 ms
93,896 KB
testcase_26 AC 69 ms
93,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
S=input().strip()
cnt=0
for s in S:
    if s in "AGCT":
        cnt+=1

L=list(S[:cnt])
R=list(S[cnt:])[::-1]
ans=0
while cnt>0:
    ans+=1
    s = L.pop()
    if s in "AGCT":
        cnt-=1
    else:
        L.append(R.pop())
print(ans)
0