結果

問題 No.8081 HQ9+
ユーザー cielciel
提出日時 2021-04-15 09:53:28
言語 Ruby
(3.4.1)
結果
WA  
実行時間 -
コード長 158 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-07-01 09:21:54
合計ジャッジ時間 3,136 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 15 WA * 6
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:5: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:9: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

n=gets.to_i
s=gets.chomp
c=s.count 'Q'
if s.include?('H')||c<1
  p -1;exit
end
a=s.chars.each_slice(n/c).to_a
if a.any?{|e|e!=a[0]}
  p -1;exit
end
puts 'Q'*c
0