結果

問題 No.1943 消えたAGCT(1)
ユーザー RainkunchRainkunch
提出日時 2022-05-20 23:36:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 135,056 KB
最終ジャッジ日時 2024-09-20 10:02:44
合計ジャッジ時間 3,309 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 37 ms
51,840 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 35 ms
51,840 KB
testcase_08 AC 38 ms
51,712 KB
testcase_09 AC 116 ms
135,056 KB
testcase_10 AC 91 ms
100,736 KB
testcase_11 AC 93 ms
100,736 KB
testcase_12 AC 94 ms
100,916 KB
testcase_13 AC 60 ms
75,648 KB
testcase_14 AC 44 ms
60,672 KB
testcase_15 AC 100 ms
101,072 KB
testcase_16 AC 75 ms
86,272 KB
testcase_17 AC 97 ms
97,664 KB
testcase_18 AC 102 ms
103,568 KB
testcase_19 AC 106 ms
103,648 KB
testcase_20 AC 104 ms
103,696 KB
testcase_21 AC 106 ms
103,320 KB
testcase_22 AC 129 ms
121,488 KB
testcase_23 AC 126 ms
121,096 KB
testcase_24 AC 96 ms
101,376 KB
testcase_25 AC 96 ms
100,856 KB
testcase_26 AC 93 ms
101,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = list(input())
counter = 0
start = s.count('A') + s.count('G') + s.count('C') + s.count('T')
checklist = ['A','G','C','T']
f = [0]*n
for sn in range(n):
    if s[sn] in checklist:
        f[sn] = 1
if start == 0: print(0)
else:
    goof = [i for i in range(n) if f[i] == 1]
    left = goof[0]
    right = goof[-1]
    r_nagasa = len([i for i in range(len(goof)) if start <= i])
    l_nagasa = len(goof) - r_nagasa
    print(right-start+l_nagasa+1)
0