結果

問題 No.1943 消えたAGCT(1)
ユーザー simansiman
提出日時 2022-05-21 00:24:10
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,054 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 443 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 57,896 KB
最終ジャッジ日時 2024-09-20 10:43:30
合計ジャッジ時間 13,379 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,288 KB
testcase_01 AC 78 ms
12,288 KB
testcase_02 AC 82 ms
12,288 KB
testcase_03 AC 80 ms
12,160 KB
testcase_04 AC 78 ms
12,160 KB
testcase_05 AC 80 ms
12,160 KB
testcase_06 AC 79 ms
12,032 KB
testcase_07 AC 79 ms
12,160 KB
testcase_08 AC 80 ms
12,160 KB
testcase_09 AC 595 ms
57,484 KB
testcase_10 AC 1,038 ms
57,896 KB
testcase_11 AC 775 ms
57,396 KB
testcase_12 AC 857 ms
57,704 KB
testcase_13 AC 442 ms
39,368 KB
testcase_14 AC 96 ms
13,312 KB
testcase_15 AC 499 ms
54,728 KB
testcase_16 AC 397 ms
39,680 KB
testcase_17 AC 448 ms
48,380 KB
testcase_18 AC 520 ms
57,556 KB
testcase_19 AC 527 ms
57,504 KB
testcase_20 AC 530 ms
57,504 KB
testcase_21 AC 537 ms
57,516 KB
testcase_22 AC 585 ms
57,648 KB
testcase_23 AC 599 ms
57,772 KB
testcase_24 AC 754 ms
57,412 KB
testcase_25 AC 761 ms
57,376 KB
testcase_26 AC 1,054 ms
57,792 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 + 1
  puts l_idx + 1
else
  puts f_idx + 1
end
0