結果

問題 No.1943 消えたAGCT(1)
ユーザー terasaterasa
提出日時 2022-05-21 18:53:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 557 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,104 KB
最終ジャッジ日時 2024-09-20 12:03:53
合計ジャッジ時間 3,535 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
65,536 KB
testcase_01 AC 69 ms
65,664 KB
testcase_02 AC 64 ms
65,536 KB
testcase_03 AC 63 ms
65,664 KB
testcase_04 AC 62 ms
65,536 KB
testcase_05 AC 67 ms
65,408 KB
testcase_06 AC 63 ms
65,792 KB
testcase_07 AC 66 ms
65,536 KB
testcase_08 AC 73 ms
65,536 KB
testcase_09 AC 95 ms
78,848 KB
testcase_10 AC 82 ms
69,760 KB
testcase_11 AC 91 ms
78,720 KB
testcase_12 AC 78 ms
69,632 KB
testcase_13 AC 84 ms
78,336 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 97 ms
78,720 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 105 ms
78,720 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 107 ms
78,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict, Counter
import string
import random

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


N = int(input())
S = input()[:-1]

chars = {'A', 'G', 'C', 'T'}
cnt = 0
first = None
last = None
for i, c in enumerate(S):
    if c in chars:
        if first is None:
            first = i
        last = i
        cnt += 1
if first is None:
    print(0)
else:
    print(last - min(first, cnt - 1) + 1)
0