結果

問題 No.518 ローマ数字の和
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-21 21:44:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,342 bytes
コンパイル時間 2,193 ms
コンパイル使用メモリ 78,096 KB
実行使用メモリ 54,316 KB
最終ジャッジ日時 2024-09-19 16:11:16
合計ジャッジ時間 6,251 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,844 KB
testcase_01 WA -
testcase_02 AC 132 ms
54,104 KB
testcase_03 AC 135 ms
54,316 KB
testcase_04 AC 135 ms
53,972 KB
testcase_05 AC 139 ms
54,052 KB
testcase_06 AC 134 ms
53,812 KB
testcase_07 AC 134 ms
54,040 KB
testcase_08 AC 159 ms
54,248 KB
testcase_09 AC 137 ms
54,112 KB
testcase_10 AC 135 ms
54,200 KB
testcase_11 AC 136 ms
53,900 KB
testcase_12 AC 134 ms
53,780 KB
testcase_13 WA -
testcase_14 AC 135 ms
54,132 KB
testcase_15 AC 134 ms
54,032 KB
testcase_16 AC 133 ms
54,072 KB
testcase_17 AC 134 ms
53,824 KB
testcase_18 WA -
testcase_19 AC 134 ms
53,956 KB
testcase_20 AC 117 ms
52,724 KB
testcase_21 AC 133 ms
54,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		int n = sc.nextInt();
		String[] a = {"IV","IX","XL","XC","CD","CM"};
		String[] b = {"IIII","VIIII","XXXX","LXXXX","CCCC","DCCCC"};
		StringBuilder sb = new StringBuilder();
		for (int i=0; i<n; i++) {
			String temp = sc.next();
			for (int j=0; j<6; j++) {
				temp = temp.replaceAll(a[j],b[j]);
			}
			sb.append(temp);
		}

		int total = 0;
		char[] ar = {'I','V','X','L','C','D','M'};
		int[] number = {1,5,10,50,100,500,1000};
		for (int i=0; i<sb.length(); i++) {
			for (int j=0; j<7; j++) {
				if (sb.charAt(i)==ar[j]) {total += number[j];}
			}
		}

		if (total > 3999) {System.out.println("ERROR");}
		else {
			int[] num = new int[7];
			for (int i=6; i>=0; i--) {
				num[i] = total/number[i];
				total = total%number[i];
			}


			StringBuilder ans = new StringBuilder();
			for (int i=6; i>=0; i--) {
				if (i==4 && num[4]==4) {ans.append("CD");}
				else if (i==3 && num[3]==1 && num[2]==4) {ans.append("XC"); i--;}
				else if (i==2 && num[2]==4) {ans.append("XL");}
				else if (i==1 && num[1]==1 && num[0]==9) {ans.append("IX"); i--;}
				else if (i==0 && num[0]==4) {ans.append("IV");}
				else {for (int j=0; j<num[i]; j++) {ans.append(ar[i]);}}
			}
			System.out.println(ans);
		}
	}
}
0