結果
| 問題 |
No.1943 消えたAGCT(1)
|
| コンテスト | |
| ユーザー |
とりゐ
|
| 提出日時 | 2022-05-20 21:53:52 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 47 ms / 2,000 ms |
| コード長 | 107 bytes |
| コンパイル時間 | 252 ms |
| コンパイル使用メモリ | 82,088 KB |
| 実行使用メモリ | 60,800 KB |
| 最終ジャッジ日時 | 2024-09-20 07:57:41 |
| 合計ジャッジ時間 | 2,170 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 27 |
ソースコード
n=int(input())
s=input()
for i in range(n-1,-1,-1):
if s[i] in 'ATGC':
print(i+1)
exit()
print(0)
とりゐ