結果

問題 No.517 壊れたアクセサリー
ユーザー maimai
提出日時 2017-05-28 21:48:04
言語 Ruby
(3.4.1)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 678 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-09-21 15:22:18
合計ジャッジ時間 2,270 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 15
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def scan; gets.split.map(&:to_i); end

def sayno
    puts "-1";exit
end

#u = ['I','II','III','IV','V','VI','VII']

ac = {}
z = {}
gets.to_i.times{
    s = gets.chomp
    s.chars{|c| z[c]=0}
    (s.size-1).times{|i|
        ac[s[i]] = s[i+1]
        z[s[i+1]] = 1
    }
}
gets.to_i.times{
    s = gets.chomp
    # s.chars{|c| z[c]=0}
    (s.size-1).times{|i|
        sayno if ac[s[i]] && ac[s[i]] != s[i+1]
        ac[s[i]] = s[i+1]
        z[s[i+1]] = 1
    }
}

start = nil
z.each{|k,v|
    if v==0
        sayno if start
        start = k
    end
}
sayno if !start

str = start
while ac[start]
    start = ac[start]
    str+=start
end

sayno if z.size != str.size

puts str

0