結果

問題 No.1943 消えたAGCT(1)
ユーザー TomoyarnTomoyarn
提出日時 2024-08-03 13:05:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 132 bytes
コンパイル時間 557 ms
コンパイル使用メモリ 82,712 KB
実行使用メモリ 97,964 KB
最終ジャッジ日時 2024-08-03 13:05:33
合計ジャッジ時間 3,558 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
53,008 KB
testcase_01 AC 33 ms
52,000 KB
testcase_02 AC 33 ms
53,432 KB
testcase_03 AC 31 ms
52,644 KB
testcase_04 AC 32 ms
52,400 KB
testcase_05 AC 35 ms
52,204 KB
testcase_06 AC 43 ms
52,568 KB
testcase_07 AC 34 ms
52,208 KB
testcase_08 AC 33 ms
53,056 KB
testcase_09 AC 70 ms
97,016 KB
testcase_10 AC 73 ms
97,028 KB
testcase_11 AC 74 ms
97,036 KB
testcase_12 AC 72 ms
97,164 KB
testcase_13 AC 46 ms
74,972 KB
testcase_14 AC 39 ms
59,540 KB
testcase_15 AC 75 ms
97,964 KB
testcase_16 AC 54 ms
79,328 KB
testcase_17 AC 52 ms
80,184 KB
testcase_18 AC 73 ms
97,092 KB
testcase_19 AC 72 ms
97,500 KB
testcase_20 AC 71 ms
97,040 KB
testcase_21 AC 72 ms
97,304 KB
testcase_22 AC 83 ms
97,256 KB
testcase_23 AC 78 ms
96,812 KB
testcase_24 AC 70 ms
97,004 KB
testcase_25 AC 71 ms
97,168 KB
testcase_26 AC 70 ms
97,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
S = list(input())
ans = -1

for i in range(N):
    if S[i] in "AGCT":
        ans = i

print(ans + 1)
        
    
0