結果

問題 No.1943 消えたAGCT(1)
ユーザー simansiman
提出日時 2022-05-21 00:15:58
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 245 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 57,888 KB
最終ジャッジ日時 2024-09-20 10:40:50
合計ジャッジ時間 13,170 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
12,160 KB
testcase_01 AC 79 ms
12,288 KB
testcase_02 AC 80 ms
12,288 KB
testcase_03 AC 78 ms
12,032 KB
testcase_04 AC 83 ms
12,288 KB
testcase_05 AC 82 ms
12,160 KB
testcase_06 AC 80 ms
12,160 KB
testcase_07 AC 82 ms
12,032 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 1,057 ms
57,752 KB
testcase_11 AC 789 ms
57,380 KB
testcase_12 AC 807 ms
57,756 KB
testcase_13 AC 444 ms
39,356 KB
testcase_14 AC 95 ms
13,312 KB
testcase_15 AC 500 ms
54,756 KB
testcase_16 AC 396 ms
39,680 KB
testcase_17 AC 447 ms
48,212 KB
testcase_18 AC 524 ms
57,520 KB
testcase_19 AC 527 ms
57,500 KB
testcase_20 AC 528 ms
57,540 KB
testcase_21 AC 530 ms
57,388 KB
testcase_22 AC 586 ms
57,636 KB
testcase_23 AC 590 ms
57,680 KB
testcase_24 AC 782 ms
57,280 KB
testcase_25 AC 783 ms
57,384 KB
testcase_26 AC 1,069 ms
57,772 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
S = gets.chomp

cnt = S.chars.count { |s| s =~ /[AGCT]/ }
f_idx = S.chars.index { |s| s =~ /[AGCT]/ }
l_idx = S.chars.rindex { |s| s =~ /[AGCT]/ }

if cnt == 0
  puts 0
elsif cnt <= l_idx
  puts l_idx + 1
else
  puts f_idx + 1
end
0