結果

問題 No.2021 Not A but B
ユーザー simansiman
提出日時 2022-07-30 08:34:52
言語 Ruby
(3.3.0)
結果
AC  
実行時間 551 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 45 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 30,476 KB
最終ジャッジ日時 2024-07-20 03:48:01
合計ジャッジ時間 11,103 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
12,032 KB
testcase_01 AC 95 ms
12,160 KB
testcase_02 AC 95 ms
12,288 KB
testcase_03 AC 96 ms
12,160 KB
testcase_04 AC 94 ms
12,032 KB
testcase_05 AC 97 ms
12,160 KB
testcase_06 AC 94 ms
12,032 KB
testcase_07 AC 95 ms
12,160 KB
testcase_08 AC 516 ms
26,752 KB
testcase_09 AC 541 ms
26,752 KB
testcase_10 AC 505 ms
25,984 KB
testcase_11 AC 483 ms
24,704 KB
testcase_12 AC 484 ms
24,704 KB
testcase_13 AC 494 ms
25,600 KB
testcase_14 AC 516 ms
24,960 KB
testcase_15 AC 513 ms
24,832 KB
testcase_16 AC 508 ms
25,600 KB
testcase_17 AC 500 ms
24,832 KB
testcase_18 AC 511 ms
26,240 KB
testcase_19 AC 515 ms
25,088 KB
testcase_20 AC 515 ms
25,728 KB
testcase_21 AC 117 ms
12,672 KB
testcase_22 AC 106 ms
12,288 KB
testcase_23 AC 107 ms
12,288 KB
testcase_24 AC 97 ms
12,288 KB
testcase_25 AC 105 ms
12,288 KB
testcase_26 AC 334 ms
12,416 KB
testcase_27 AC 530 ms
30,352 KB
testcase_28 AC 513 ms
30,212 KB
testcase_29 AC 551 ms
30,476 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
S = gets.chomp

checked = Hash.new
ans = 0

0.upto(N - 2) do |i|
  s = []
  s << i if S[i] == 'A'
  s << i + 1 if S[i + 1] == 'A'

  if not checked[s]
    checked[s] = true
    ans += 1
  end
end

puts ans
0