結果

問題 No.1943 消えたAGCT(1)
ユーザー moon17moon17
提出日時 2022-05-20 22:37:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 434 ms / 2,000 ms
コード長 525 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 15,256 KB
最終ジャッジ日時 2024-09-20 08:55:23
合計ジャッジ時間 7,157 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 429 ms
15,124 KB
testcase_10 AC 211 ms
15,184 KB
testcase_11 AC 211 ms
15,116 KB
testcase_12 AC 418 ms
14,996 KB
testcase_13 AC 183 ms
13,360 KB
testcase_14 AC 39 ms
10,752 KB
testcase_15 AC 401 ms
14,800 KB
testcase_16 AC 333 ms
14,000 KB
testcase_17 AC 346 ms
14,132 KB
testcase_18 AC 434 ms
15,000 KB
testcase_19 AC 430 ms
15,004 KB
testcase_20 AC 428 ms
15,184 KB
testcase_21 AC 433 ms
15,128 KB
testcase_22 AC 424 ms
15,128 KB
testcase_23 AC 433 ms
15,256 KB
testcase_24 AC 216 ms
15,200 KB
testcase_25 AC 219 ms
15,196 KB
testcase_26 AC 223 ms
15,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = input()

ans=0

pos=[0]*N
c=0
for i in range(N):
    if S[i]=="A" or S[i]=="G" or S[i]=="C" or S[i]=="T":
        pos[i]=1
        c+=1

if c>0:
    ans=0
    kesu=c-1
    moto=c-1
    next=c-1
    for i in range(N):
#        print(next)
        ans+=1
        if pos[next]==1:
            moto-=1
            next=moto
            if moto<0:
                break
        else:
            kesu+=1
            next=kesu
            if kesu>(N-1):
                break
    print(ans)

else:
    print(0)
0