結果

問題 No.518 ローマ数字の和
ユーザー yumechiyumechi
提出日時 2017-06-18 17:03:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 1,078 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 54,156 KB
最終ジャッジ日時 2024-10-01 20:20:14
合計ジャッジ時間 2,050 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,880 KB
testcase_01 AC 38 ms
52,556 KB
testcase_02 AC 40 ms
53,452 KB
testcase_03 AC 40 ms
52,588 KB
testcase_04 AC 39 ms
52,060 KB
testcase_05 AC 40 ms
53,408 KB
testcase_06 AC 39 ms
52,820 KB
testcase_07 AC 40 ms
53,668 KB
testcase_08 AC 39 ms
53,080 KB
testcase_09 AC 40 ms
54,072 KB
testcase_10 AC 39 ms
53,024 KB
testcase_11 AC 39 ms
52,340 KB
testcase_12 AC 39 ms
52,484 KB
testcase_13 AC 39 ms
53,816 KB
testcase_14 AC 38 ms
53,384 KB
testcase_15 AC 40 ms
52,352 KB
testcase_16 AC 39 ms
52,392 KB
testcase_17 AC 41 ms
54,156 KB
testcase_18 AC 39 ms
53,688 KB
testcase_19 AC 38 ms
52,884 KB
testcase_20 AC 38 ms
53,972 KB
testcase_21 AC 39 ms
53,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def roman2arabic(roman: str) -> int:
    special_case = [["IV", 4], ["IX", 9], ["XL", 40], ["XC", 90], ["CD", 400], ["CM", 900]]
    normal_case = [["I", 1], ["V", 5], ["X", 10], ["L", 50], ["C", 100], ["D", 500], ["M", 1000]]
    arabic = 0
    for s in special_case:
        if s[0] in roman:
            arabic += s[1]
            roman = roman.replace(s[0], "")
    for n in normal_case:
        if n[0] in roman:
            arabic += roman.count(n[0]) * n[1]
    return arabic

def arabic2roman(arabic: int) -> str:
    if arabic > 3999:
        return "ERROR"
    roman = ""
    roman_numerics = [[1000, "M"], [900, "CM"], [500, "D"], [400, "CD"], [100, "C"], [90, "XC"], [50, "L"], [40, "XL"], [10, "X"], [9, "IX"], [5, "V"], [4, "IV"], [1, "I"]]
    while arabic > 0:
        for n in roman_numerics:
            if arabic >= n[0]:
                roman += n[1]
                arabic -= n[0]
                break
    return roman 

def solve():
    input()
    print(arabic2roman(sum([roman2arabic(i) for i in input().split()])))

if __name__=="__main__":
    solve()
0