結果

問題 No.1943 消えたAGCT(1)
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-05-20 21:29:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 192 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 97,280 KB
最終ジャッジ日時 2024-09-20 07:19:23
合計ジャッジ時間 2,514 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,256 KB
testcase_01 AC 36 ms
51,996 KB
testcase_02 AC 34 ms
51,820 KB
testcase_03 AC 36 ms
53,356 KB
testcase_04 AC 35 ms
52,112 KB
testcase_05 AC 35 ms
52,312 KB
testcase_06 AC 34 ms
51,820 KB
testcase_07 AC 35 ms
52,896 KB
testcase_08 AC 35 ms
52,192 KB
testcase_09 AC 49 ms
78,604 KB
testcase_10 AC 80 ms
97,028 KB
testcase_11 AC 83 ms
97,280 KB
testcase_12 AC 52 ms
78,208 KB
testcase_13 AC 54 ms
73,216 KB
testcase_14 AC 37 ms
52,480 KB
testcase_15 AC 51 ms
76,672 KB
testcase_16 AC 48 ms
71,424 KB
testcase_17 AC 49 ms
72,704 KB
testcase_18 AC 51 ms
78,336 KB
testcase_19 AC 50 ms
78,120 KB
testcase_20 AC 52 ms
78,660 KB
testcase_21 AC 50 ms
78,208 KB
testcase_22 AC 51 ms
78,336 KB
testcase_23 AC 52 ms
77,952 KB
testcase_24 AC 84 ms
96,896 KB
testcase_25 AC 89 ms
96,768 KB
testcase_26 AC 83 ms
97,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
s = list(input())
l = ["A","G","C","T"]
flg = True
for i in range(n-1,-1,-1):
    if s[i] in l:
        flg = False
        break
if not flg:
    print(i+1)
else:
    print(0)
0