結果

問題 No.1943 消えたAGCT(1)
ユーザー Meso MesoMeso Meso
提出日時 2024-07-16 10:34:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 89 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 38,404 KB
最終ジャッジ日時 2024-07-16 10:34:38
合計ジャッジ時間 3,899 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 219 ms
38,404 KB
testcase_10 AC 145 ms
11,776 KB
testcase_11 AC 149 ms
11,772 KB
testcase_12 AC 146 ms
11,772 KB
testcase_13 AC 101 ms
11,392 KB
testcase_14 AC 29 ms
10,880 KB
testcase_15 AC 155 ms
15,324 KB
testcase_16 AC 123 ms
14,216 KB
testcase_17 AC 128 ms
14,748 KB
testcase_18 AC 171 ms
15,360 KB
testcase_19 AC 151 ms
15,616 KB
testcase_20 AC 157 ms
15,612 KB
testcase_21 AC 151 ms
15,616 KB
testcase_22 AC 185 ms
28,728 KB
testcase_23 AC 189 ms
28,720 KB
testcase_24 AC 145 ms
11,776 KB
testcase_25 AC 144 ms
11,776 KB
testcase_26 AC 158 ms
11,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()

A = [i for i, x in enumerate(s) if x == "A"]
G = [i for i, x in enumerate(s) if x == "G"]
C = [i for i, x in enumerate(s) if x == "C"]
T = [i for i, x in enumerate(s) if x == "T"]

AGCT = A + G + C + T
AGCT.sort()
if len(AGCT) == 0:
    print(0)
else:
    print(AGCT[-1] + 1)
0