結果

問題 No.1943 消えたAGCT(1)
ユーザー nohakai3nohakai3
提出日時 2022-06-21 14:27:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 134 bytes
コンパイル時間 438 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-04-22 08:32:45
合計ジャッジ時間 5,889 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 30 ms
10,624 KB
testcase_03 WA -
testcase_04 AC 29 ms
10,624 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 194 ms
11,772 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 219 ms
11,904 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 176 ms
11,648 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 214 ms
11,772 KB
testcase_21 AC 219 ms
11,648 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
s=input()

ans=0
for i in range(n):
    if s[i]=="A" or s[i]=="C" or s[i]=="G" or s[i]=="T":
        ans=i


print(i+1)
0