結果

問題 No.1943 消えたAGCT(1)
ユーザー ohanaohana
提出日時 2023-09-29 15:21:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 136 bytes
コンパイル時間 494 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 62,644 KB
最終ジャッジ日時 2024-07-22 09:32:27
合計ジャッジ時間 2,768 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,300 KB
testcase_01 AC 36 ms
53,912 KB
testcase_02 AC 37 ms
53,020 KB
testcase_03 AC 36 ms
52,924 KB
testcase_04 AC 35 ms
52,204 KB
testcase_05 AC 36 ms
52,228 KB
testcase_06 AC 36 ms
52,184 KB
testcase_07 AC 36 ms
53,788 KB
testcase_08 AC 36 ms
52,340 KB
testcase_09 AC 44 ms
57,252 KB
testcase_10 AC 51 ms
62,560 KB
testcase_11 AC 50 ms
61,812 KB
testcase_12 AC 43 ms
56,300 KB
testcase_13 AC 44 ms
61,084 KB
testcase_14 AC 37 ms
53,580 KB
testcase_15 AC 45 ms
56,920 KB
testcase_16 AC 40 ms
55,840 KB
testcase_17 AC 41 ms
54,972 KB
testcase_18 AC 44 ms
56,188 KB
testcase_19 AC 44 ms
57,404 KB
testcase_20 AC 43 ms
56,548 KB
testcase_21 AC 43 ms
56,576 KB
testcase_22 AC 43 ms
56,708 KB
testcase_23 AC 44 ms
57,312 KB
testcase_24 AC 51 ms
62,336 KB
testcase_25 AC 50 ms
62,644 KB
testcase_26 AC 51 ms
62,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = input()
s = s[::-1]
cnt = 0
for i in range(n):
    if s[cnt] in "AGCT":
        break
    cnt += 1

print(n - cnt)
0