結果

問題 No.518 ローマ数字の和
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-21 22:23:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 1,062 bytes
コンパイル時間 2,106 ms
コンパイル使用メモリ 77,264 KB
実行使用メモリ 56,084 KB
最終ジャッジ日時 2024-09-19 19:29:17
合計ジャッジ時間 5,966 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
56,084 KB
testcase_01 AC 115 ms
52,976 KB
testcase_02 AC 129 ms
54,000 KB
testcase_03 AC 135 ms
54,240 KB
testcase_04 AC 118 ms
52,736 KB
testcase_05 AC 117 ms
52,772 KB
testcase_06 AC 140 ms
54,140 KB
testcase_07 AC 116 ms
52,888 KB
testcase_08 AC 164 ms
54,132 KB
testcase_09 AC 126 ms
53,984 KB
testcase_10 AC 129 ms
54,148 KB
testcase_11 AC 130 ms
54,064 KB
testcase_12 AC 126 ms
54,280 KB
testcase_13 AC 136 ms
54,264 KB
testcase_14 AC 126 ms
53,752 KB
testcase_15 AC 126 ms
54,228 KB
testcase_16 AC 129 ms
54,120 KB
testcase_17 AC 132 ms
54,172 KB
testcase_18 AC 129 ms
53,860 KB
testcase_19 AC 127 ms
54,224 KB
testcase_20 AC 130 ms
54,132 KB
testcase_21 AC 128 ms
54,140 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;
		int[] number = {1000,900,500,400,100,90,50,40,10,9,5,4,1};
		String[] roma = {"M","CM","D","CD","C","XC","L","XL","X","IX","V","IV","I"};
		for (int i=0; i<sb.length(); i++) {
			for (int j=0; j<13; j++) {
				if (sb.substring(i,i+1).equals(roma[j])) {total += number[j];}
			}
		}
		
		if (total > 3999) {System.out.println("ERROR");}
		else {
			StringBuilder ans = new StringBuilder();
			for (int i=0; i<13; i++) {
				int ii = total/number[i];
				for (int j=0; j<ii; j++) {
					ans.append(roma[i]);
				}
				total = total%number[i];
			}
			System.out.println(ans);
		}
	}
}
0