結果
| 問題 | No.1943 消えたAGCT(1) |
| コンテスト | |
| ユーザー |
nohakai3
|
| 提出日時 | 2022-06-21 14:28:54 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 136 bytes |
| 記録 | |
| コンパイル時間 | 562 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 16,092 KB |
| 最終ジャッジ日時 | 2026-05-01 17:13:17 |
| 合計ジャッジ時間 | 7,751 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 23 WA * 4 |
ソースコード
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(ans+1)
nohakai3