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