結果

問題 No.1943 消えたAGCT(1)
ユーザー pitPpitP
提出日時 2022-05-20 21:48:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 269 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,632 KB
最終ジャッジ日時 2024-09-20 07:49:27
合計ジャッジ時間 3,791 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 194 ms
31,632 KB
testcase_10 AC 134 ms
11,644 KB
testcase_11 AC 129 ms
11,772 KB
testcase_12 AC 132 ms
11,644 KB
testcase_13 AC 94 ms
11,520 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 143 ms
14,088 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 183 ms
24,968 KB
testcase_23 WA -
testcase_24 AC 138 ms
11,648 KB
testcase_25 AC 135 ms
11,644 KB
testcase_26 AC 137 ms
11,648 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)

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

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