結果

問題 No.518 ローマ数字の和
ユーザー htensaihtensai
提出日時 2020-06-10 17:33:30
言語 Java
(openjdk 23)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 2,288 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 84,472 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-06-23 09:11:32
合計ジャッジ時間 6,048 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
40,984 KB
testcase_01 AC 126 ms
41,336 KB
testcase_02 AC 110 ms
40,440 KB
testcase_03 AC 120 ms
41,272 KB
testcase_04 AC 119 ms
41,328 KB
testcase_05 AC 122 ms
41,512 KB
testcase_06 AC 128 ms
41,264 KB
testcase_07 AC 132 ms
41,428 KB
testcase_08 AC 134 ms
41,236 KB
testcase_09 AC 128 ms
41,324 KB
testcase_10 AC 122 ms
41,264 KB
testcase_11 AC 119 ms
40,956 KB
testcase_12 AC 123 ms
41,360 KB
testcase_13 AC 123 ms
41,188 KB
testcase_14 AC 118 ms
40,712 KB
testcase_15 AC 122 ms
41,212 KB
testcase_16 AC 120 ms
40,956 KB
testcase_17 AC 122 ms
41,096 KB
testcase_18 AC 124 ms
41,172 KB
testcase_19 AC 118 ms
40,968 KB
testcase_20 AC 130 ms
41,252 KB
testcase_21 AC 125 ms
41,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static HashMap<Character, Integer> romanToInteger = new HashMap<>();
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		romanToInteger.put('I', 1);
		romanToInteger.put('V', 5);
		romanToInteger.put('X', 10);
		romanToInteger.put('L', 50);
		romanToInteger.put('C', 100);
		romanToInteger.put('D', 500);
		romanToInteger.put('M', 1000);
		int sum = 0;
	    int n = sc.nextInt();
	    for (int i = 0; i < n; i++) {
	        sum += getInteger(sc.next());
	    }
	    if (sum >= 4000) {
	        System.out.println("ERROR");
	        return;
	    }
	    StringBuilder sb = new StringBuilder();
	    int first = sum / 1000;
	    for (int i = 0; i < first; i++) {
	        sb.append("M");
	    }
	    int second = sum % 1000 / 100;
	    if (second == 9) {
	        sb.append("CM");
	    } else if (second == 4) {
	        sb.append("CD");
	    } else {
	        if (second >= 5) {
	            second -= 5;
	            sb.append("D");
	        }
	        for (int i = 0; i < second; i++) {
	            sb.append("C");
	        }
	    }
	    int third = sum % 100 / 10;
	    if (third == 9) {
	        sb.append("XC");
	    } else if (third == 4) {
	        sb.append("XL");
	    } else {
	        if (third >= 5) {
	            third -= 5;
	            sb.append("L");
	        }
	        for (int i = 0; i < third; i++) {
	            sb.append("X");
	        }
	    }
	    int forth = sum % 10;
	    if (forth == 9) {
	        sb.append("IX");
	    } else if (forth == 4) {
	        sb.append("IV");
	    } else {
	        if (forth >= 5) {
	            forth -= 5;
	            sb.append("V");
	        }
	        for (int i = 0; i < forth; i++) {
	            sb.append("I");
	        }
	    }
	    System.out.println(sb);
	}
	
    static int getInteger(String s) {
        ArrayDeque<Integer> stack = new ArrayDeque<>();
        for (char c : s.toCharArray()) {
            int x = romanToInteger.get(c);
            if (stack.size() > 0 && stack.peek() < x) {
                stack.push(x - stack.pop());
            } else {
                stack.push(x);
            }
        }
        int ans = 0;
        while (stack.size() > 0) {
            ans += stack.pop();
        }
        return ans;
    }
}
0