結果

問題 No.1943 消えたAGCT(1)
ユーザー JF1HNLJF1HNL
提出日時 2022-05-22 20:06:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 98,604 KB
最終ジャッジ日時 2024-09-20 12:51:21
合計ジャッジ時間 3,264 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 39 ms
53,120 KB
testcase_02 AC 40 ms
53,376 KB
testcase_03 AC 41 ms
53,120 KB
testcase_04 AC 40 ms
53,632 KB
testcase_05 AC 44 ms
53,504 KB
testcase_06 AC 44 ms
53,504 KB
testcase_07 AC 39 ms
53,376 KB
testcase_08 AC 43 ms
53,376 KB
testcase_09 AC 98 ms
98,276 KB
testcase_10 AC 90 ms
97,896 KB
testcase_11 AC 94 ms
97,928 KB
testcase_12 AC 91 ms
98,604 KB
testcase_13 AC 81 ms
90,240 KB
testcase_14 AC 49 ms
60,800 KB
testcase_15 AC 101 ms
97,776 KB
testcase_16 AC 91 ms
94,208 KB
testcase_17 AC 95 ms
95,104 KB
testcase_18 AC 103 ms
98,276 KB
testcase_19 AC 103 ms
98,136 KB
testcase_20 AC 103 ms
98,272 KB
testcase_21 AC 105 ms
98,280 KB
testcase_22 AC 104 ms
98,024 KB
testcase_23 AC 101 ms
98,396 KB
testcase_24 AC 99 ms
98,532 KB
testcase_25 AC 98 ms
98,280 KB
testcase_26 AC 99 ms
98,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
n = int(input())
s = list(input())

agctcnt = 0
agctset = set(["A", "G", "C", "T"])

agctmaxindex = -1

for index, it in enumerate(s):
  if it in agctset:
    agctcnt += 1
    agctmaxindex = index

print(agctmaxindex + 1)
0