結果

問題 No.1943 消えたAGCT(1)
ユーザー pitPpitP
提出日時 2022-05-20 23:54:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 286 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 101,376 KB
最終ジャッジ日時 2024-09-20 10:20:33
合計ジャッジ時間 2,683 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
51,712 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 38 ms
52,464 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 89 ms
101,376 KB
testcase_10 AC 59 ms
62,336 KB
testcase_11 AC 59 ms
61,312 KB
testcase_12 AC 59 ms
61,696 KB
testcase_13 AC 53 ms
60,928 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 74 ms
70,784 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 88 ms
90,368 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 60 ms
61,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
n = int(input())
s = input()
idx = []
c = 0
for i in range(n):
    if s[i] in ["A","C","G","T"]:
        c += 1
        idx.append(i+1)

if c == 0:
    print(0)
    exit()

if c == idx[-1]:
    print(c)
elif c < idx[0]:
    print(idx[-1])
else:
    print(idx[-1]-idx[0]+1)
0