結果

問題 No.518 ローマ数字の和
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-21 23:21:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 1,185 bytes
コンパイル時間 2,248 ms
コンパイル使用メモリ 77,432 KB
実行使用メモリ 41,816 KB
最終ジャッジ日時 2024-09-21 14:52:16
合計ジャッジ時間 6,139 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,324 KB
testcase_01 AC 131 ms
41,312 KB
testcase_02 AC 133 ms
41,552 KB
testcase_03 AC 137 ms
41,180 KB
testcase_04 AC 120 ms
40,436 KB
testcase_05 AC 119 ms
40,176 KB
testcase_06 AC 137 ms
41,408 KB
testcase_07 AC 133 ms
41,208 KB
testcase_08 AC 161 ms
41,816 KB
testcase_09 AC 137 ms
41,584 KB
testcase_10 AC 137 ms
41,328 KB
testcase_11 AC 136 ms
41,488 KB
testcase_12 AC 117 ms
40,316 KB
testcase_13 AC 136 ms
41,344 KB
testcase_14 AC 131 ms
41,404 KB
testcase_15 AC 132 ms
41,184 KB
testcase_16 AC 134 ms
41,320 KB
testcase_17 AC 133 ms
41,280 KB
testcase_18 AC 134 ms
41,412 KB
testcase_19 AC 133 ms
41,456 KB
testcase_20 AC 132 ms
41,284 KB
testcase_21 AC 133 ms
41,176 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();
		int total = 0;
		for (int i=0; i<n; i++) {
			total += RomanToArabic(sc.next());
		}
		System.out.println(total>3999?"ERROR":ArabicToRoman(total));
	}
	
	static String[] a = {"IV","IX","XL","XC","CD","CM"};
	static String[] b = {"IIII","VIIII","XXXX","LXXXX","CCCC","DCCCC"};
	static int[] number = {1000,900,500,400,100,90,50,40,10,9,5,4,1};
	static String[] roma = {"M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"};
	
	static int RomanToArabic (String s) {
		
		for (int j=0; j<6; j++) {
			s = s.replaceAll(a[j],b[j]);
		}
		int n = 0;
		
		for (int i=0; i<s.length(); i++) {
			for (int j=0; j<13; j++) {
				if (s.substring(i,i+1).equals(roma[j])) {n += number[j];}
			}
		}
		if (n > 3999) {return -1;}
		else {return n;}
	}
	
	static String ArabicToRoman (int n) {
		if (n<0 || 3999<n) {return "error";}
		StringBuilder ans = new StringBuilder();
		for (int i=0; i<13; i++) {
			int ii = n/number[i];
			for (int j=0; j<ii; j++) {
				ans.append(roma[i]);
			}
			n = n%number[i];
		}
		return ans.toString();
	}
}
0