結果

問題 No.1943 消えたAGCT(1)
ユーザー _matumo__matumo_
提出日時 2022-05-27 09:18:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 199 ms / 2,000 ms
コード長 120 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 19,344 KB
最終ジャッジ日時 2024-09-20 15:11:26
合計ジャッジ時間 3,852 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 26 ms
10,496 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 26 ms
10,496 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 25 ms
10,496 KB
testcase_06 AC 26 ms
10,496 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 25 ms
10,496 KB
testcase_09 AC 123 ms
19,344 KB
testcase_10 AC 190 ms
19,184 KB
testcase_11 AC 176 ms
19,132 KB
testcase_12 AC 118 ms
19,180 KB
testcase_13 AC 104 ms
15,700 KB
testcase_14 AC 30 ms
11,008 KB
testcase_15 AC 109 ms
18,656 KB
testcase_16 AC 96 ms
16,732 KB
testcase_17 AC 100 ms
16,972 KB
testcase_18 AC 113 ms
19,172 KB
testcase_19 AC 114 ms
19,148 KB
testcase_20 AC 124 ms
19,128 KB
testcase_21 AC 109 ms
19,152 KB
testcase_22 AC 115 ms
19,128 KB
testcase_23 AC 132 ms
19,152 KB
testcase_24 AC 199 ms
19,200 KB
testcase_25 AC 177 ms
19,152 KB
testcase_26 AC 178 ms
19,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
p=[int(c in 'AGCT') for c in input()]
for i,n in enumerate(p[::-1]):
	if n>0:	break
else:	i+=1
print(N-i)
0