結果
| 問題 | No.1943 消えたAGCT(1) |
| コンテスト | |
| ユーザー |
nohakai3
|
| 提出日時 | 2022-06-21 14:28:54 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
WA
不安定
|
| 実行時間 | - |
| コード長 | 136 bytes |
| 記録 | |
| コンパイル時間 | 59 ms |
| コンパイル使用メモリ | 14,976 KB |
| 実行使用メモリ | 12,032 KB |
| 最終ジャッジ日時 | 2026-09-16 08:43:19 |
| 合計ジャッジ時間 | 4,908 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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