結果

問題 No.1943 消えたAGCT(1)
ユーザー ああいいああいい
提出日時 2022-05-20 22:23:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 202 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 76,412 KB
最終ジャッジ日時 2024-09-20 08:37:44
合計ジャッジ時間 2,553 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,208 KB
testcase_01 AC 35 ms
52,272 KB
testcase_02 AC 35 ms
52,780 KB
testcase_03 AC 36 ms
52,192 KB
testcase_04 AC 35 ms
51,824 KB
testcase_05 AC 35 ms
52,880 KB
testcase_06 AC 34 ms
52,016 KB
testcase_07 AC 37 ms
52,600 KB
testcase_08 AC 34 ms
52,824 KB
testcase_09 AC 59 ms
76,012 KB
testcase_10 AC 60 ms
76,136 KB
testcase_11 AC 59 ms
75,996 KB
testcase_12 AC 56 ms
75,948 KB
testcase_13 AC 47 ms
69,936 KB
testcase_14 AC 39 ms
58,684 KB
testcase_15 AC 60 ms
76,164 KB
testcase_16 AC 54 ms
73,656 KB
testcase_17 AC 56 ms
73,444 KB
testcase_18 AC 63 ms
76,000 KB
testcase_19 AC 64 ms
76,412 KB
testcase_20 AC 63 ms
76,048 KB
testcase_21 AC 62 ms
76,336 KB
testcase_22 AC 59 ms
76,404 KB
testcase_23 AC 60 ms
76,080 KB
testcase_24 AC 58 ms
76,144 KB
testcase_25 AC 60 ms
76,060 KB
testcase_26 AC 61 ms
76,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
S = input()

T = "AGCT"
s = set(list(T))

count = 0
pos = -1
for i in range(n):
    if S[i] in s:
        count += 1
        pos = i
if count == 0:
    print(0)
else:
    print(pos + 1)
0