結果

問題 No.1943 消えたAGCT(1)
ユーザー chineristACchineristAC
提出日時 2022-05-20 21:24:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 355 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 66,144 KB
最終ジャッジ日時 2024-09-20 07:11:47
合計ジャッジ時間 2,626 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,396 KB
testcase_01 AC 42 ms
56,284 KB
testcase_02 AC 43 ms
56,908 KB
testcase_03 AC 43 ms
56,420 KB
testcase_04 AC 43 ms
55,872 KB
testcase_05 AC 45 ms
55,948 KB
testcase_06 AC 41 ms
56,704 KB
testcase_07 AC 42 ms
56,764 KB
testcase_08 AC 42 ms
55,712 KB
testcase_09 AC 50 ms
64,720 KB
testcase_10 AC 50 ms
65,228 KB
testcase_11 AC 50 ms
66,144 KB
testcase_12 AC 49 ms
65,336 KB
testcase_13 AC 48 ms
64,312 KB
testcase_14 AC 45 ms
62,548 KB
testcase_15 AC 50 ms
65,704 KB
testcase_16 AC 50 ms
64,288 KB
testcase_17 AC 52 ms
65,552 KB
testcase_18 AC 53 ms
65,784 KB
testcase_19 AC 55 ms
64,744 KB
testcase_20 AC 53 ms
65,168 KB
testcase_21 AC 54 ms
65,052 KB
testcase_22 AC 55 ms
65,240 KB
testcase_23 AC 56 ms
64,644 KB
testcase_24 AC 52 ms
64,896 KB
testcase_25 AC 50 ms
64,980 KB
testcase_26 AC 50 ms
65,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict
import heapq
from itertools import permutations
from math import gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N = int(input())
S = input()

res = 0
for i in range(N):
    if S[i] in "AGCT":
        res = i+1
print(res)
0