結果

問題 No.518 ローマ数字の和
ユーザー 14番14番
提出日時 2017-05-28 22:15:13
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 3,889 bytes
コンパイル時間 1,903 ms
コンパイル使用メモリ 112,612 KB
実行使用メモリ 24,264 KB
最終ジャッジ日時 2023-10-21 14:16:56
合計ジャッジ時間 2,642 ms
ジャッジサーバーID
(参考情報)
judge9 / judge10
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,176 KB
testcase_01 WA -
testcase_02 AC 25 ms
24,176 KB
testcase_03 AC 25 ms
24,176 KB
testcase_04 AC 26 ms
24,176 KB
testcase_05 AC 25 ms
24,176 KB
testcase_06 AC 26 ms
24,176 KB
testcase_07 AC 25 ms
24,072 KB
testcase_08 AC 26 ms
24,180 KB
testcase_09 AC 26 ms
24,176 KB
testcase_10 AC 25 ms
24,176 KB
testcase_11 AC 26 ms
24,176 KB
testcase_12 AC 25 ms
24,176 KB
testcase_13 AC 26 ms
24,176 KB
testcase_14 AC 26 ms
24,072 KB
testcase_15 AC 26 ms
24,176 KB
testcase_16 AC 26 ms
24,176 KB
testcase_17 AC 26 ms
24,176 KB
testcase_18 WA -
testcase_19 AC 26 ms
24,176 KB
testcase_20 AC 26 ms
24,176 KB
testcase_21 AC 26 ms
24,072 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Text;
using System.Linq;

class Program
{
    public void Proc()
    {
        int MaxLimit = 3999;

        int itemCount = int.Parse(Reader.ReadLine());
        string[] inpt = new string[itemCount];

        inpt = Reader.ReadLine().Split(' ');

        int ans = 0;
        foreach (string roman in inpt)
        {
            ans += RomanToArabic(roman);
        }
        if (ans > MaxLimit)
        {
            Console.WriteLine("ERROR");
        }
        else
        {
            Console.WriteLine(this.ArabicToRoman(ans));
        }
    }

    private int RomanToArabic(string inpt)
    {
        int idx = -1;
        int ans = 0;
        while (++idx < inpt.Length)
        {
            if (idx < inpt.Length - 1)
            {
                if (Conv(inpt[idx]) < Conv(inpt[idx+1]))
                {
                    ans += Conv(inpt[idx + 1]) - Conv(inpt[idx]);
                    idx++;
                    continue;
                }
            }
            ans += Conv(inpt[idx]);
        }
        return ans;

    }

    private string ArabicToRoman(int num)
    {
        int calc = num;

        StringBuilder ans = new StringBuilder();
        int tmp = calc / 1000;
        for (int i = 0; i < tmp; i++)
        {
            ans.Append("M");
        }
        calc = calc % 1000;
        tmp = calc / 100;
        if (tmp == 9)
        {
            ans.Append("MC");
            tmp -= 9;
        }
        if (tmp >= 5)
        {
            ans.Append("D");
            tmp -= 5;
        }
        if (tmp == 4)
        {
            ans.Append("CD");
            tmp -= 4;
        }
        for (int i = 0; i < tmp; i++)
        {
            ans.Append("C");
        }
        calc = calc % 100;
        tmp = calc / 10;
        if (tmp == 9)
        {
            ans.Append("XC");
            tmp -= 9;
        }
        if (tmp >= 5)
        {
            ans.Append("L");
            tmp -= 5;
        }
        if (tmp == 4)
        {
            ans.Append("XL");
            tmp -= 4;
        }
        for (int i = 0; i < tmp; i++)
        {
            ans.Append("X");
        }
        calc = calc % 10;
        tmp = calc;
        if (tmp == 9)
        {
            ans.Append("IX");
            tmp -= 9;
        }
        if (tmp >= 5)
        {
            ans.Append("V");
            tmp -= 5;
        }
        if (tmp == 4)
        {
            ans.Append("IV");
            tmp -= 4;
        }
        for (int i = 0; i < tmp; i++)
        {
            ans.Append("I");
        }
        return ans.ToString();
    }

    private int Conv(char c)
    {
        // I = 1、V = 5、X = 10、L = 50、C = 100、D = 500、M = 1000

        switch (c)
        {
            case 'I':
                return 1;
            case 'V':
                return 5;
            case 'X':
                return 10;
            case 'L':
                return 50;
            case 'C':
                return 100;
            case 'D':
                return 500;
            default:
                return 1000;
        }
    }




    public class Reader
    {
        public static bool IsDebug = false;
        private static String PlainInput = @"





5
IV XXI CCCXL III MMCMVI





";
        private static System.IO.StringReader Sr = null;
        public static string ReadLine()
        {
            if (IsDebug)
            {
                if (Sr == null)
                {
                    Sr = new System.IO.StringReader(PlainInput.Trim());
                }
                return Sr.ReadLine();
            }
            else
            {
                return Console.ReadLine();
            }
        }
    }
    static void Main()
    {
#if DEBUG
        Reader.IsDebug = true;
#endif
        Program prg = new Program();
        prg.Proc();
    }
}
0