結果
問題 | No.518 ローマ数字の和 |
ユーザー | siman |
提出日時 | 2022-07-24 11:12:25 |
言語 | Ruby (3.3.0) |
結果 |
AC
|
実行時間 | 91 ms / 2,000 ms |
コード長 | 1,098 bytes |
コンパイル時間 | 91 ms |
コンパイル使用メモリ | 7,680 KB |
実行使用メモリ | 12,416 KB |
最終ジャッジ日時 | 2024-07-06 05:12:23 |
合計ジャッジ時間 | 3,037 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 86 ms
12,288 KB |
testcase_01 | AC | 91 ms
12,288 KB |
testcase_02 | AC | 88 ms
12,288 KB |
testcase_03 | AC | 86 ms
12,288 KB |
testcase_04 | AC | 86 ms
12,288 KB |
testcase_05 | AC | 87 ms
12,416 KB |
testcase_06 | AC | 89 ms
12,288 KB |
testcase_07 | AC | 87 ms
12,160 KB |
testcase_08 | AC | 88 ms
12,160 KB |
testcase_09 | AC | 88 ms
12,416 KB |
testcase_10 | AC | 88 ms
12,288 KB |
testcase_11 | AC | 88 ms
12,160 KB |
testcase_12 | AC | 90 ms
12,160 KB |
testcase_13 | AC | 87 ms
12,416 KB |
testcase_14 | AC | 88 ms
12,288 KB |
testcase_15 | AC | 87 ms
12,160 KB |
testcase_16 | AC | 88 ms
12,416 KB |
testcase_17 | AC | 88 ms
12,288 KB |
testcase_18 | AC | 87 ms
12,160 KB |
testcase_19 | AC | 88 ms
12,416 KB |
testcase_20 | AC | 89 ms
12,288 KB |
testcase_21 | AC | 88 ms
12,288 KB |
コンパイルメッセージ
Syntax OK
ソースコード
TABLE = { "I" => 1, "V" => 5, "X" => 10, "L" => 50, "C" => 100, "D" => 500, "M" => 1000, } TABLE_R = { 1 => "I", 5 => "V", 10 => "X", 50 => "L", 100 => "C", 500 => "D", 1000 => "M", } def parse(str) if str.size == 1 TABLE[str] else stack = [] val = 0 str.chars.each do |s| stack << s if stack.size >= 2 && TABLE[stack[-2]] < TABLE[stack[-1]] a, b = stack.pop(2) val += TABLE[b] - TABLE[a] end end until stack.empty? a = stack.pop val += TABLE[a] end val end end def encode(val) res = "" [1000, 100, 10, 1].each do |base| d = val / base val -= d * base next if d == 0 if d <= 3 res << TABLE_R[base] * d elsif d == 4 res << TABLE_R[base] + TABLE_R[5 * base] elsif d == 9 res << TABLE_R[base] + TABLE_R[10 * base] else res << TABLE_R[5 * base] + TABLE_R[base] * (d - 5) end end res end N = gets.to_i R = gets.chomp.split val = R.map { |r| parse(r) }.sum if val >= 4000 puts "ERROR" else puts encode(val) end