結果

問題 No.518 ローマ数字の和
ユーザー hotpepsihotpepsi
提出日時 2017-06-17 22:37:16
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 920 bytes
コンパイル時間 581 ms
コンパイル使用メモリ 61,512 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-04-08 20:48:27
合計ジャッジ時間 1,844 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,676 KB
testcase_01 WA -
testcase_02 AC 2 ms
6,676 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,676 KB
testcase_05 AC 2 ms
6,676 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 2 ms
6,676 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <sstream>
#include <algorithm>
#include <cstdio>
#include <cstring>

using namespace std;

int main(int argc, char *argv[]) {
	int n, tot = 0, vtbl[256] = {};
	vtbl['I'] = 1, vtbl['V'] = 5;
	vtbl['X'] = 10, vtbl['L'] = 50;
	vtbl['C'] = 100, vtbl['D'] = 500;
	vtbl['M'] = 1000;
	cin >> n;
	string s, digits = "IVXLCDM";
	for (int i = 0; i < n; ++i) {
		cin >> s;
		int prev = 5000;
		for (char c : s) {
			if (vtbl[c] > prev) {
				tot -= prev * 2;
			}
			tot += vtbl[c];
			prev = vtbl[c];
		}
	}
	string ans;
	if (tot >= 4000) {
		ans = "error";
	} else {
		for (int i = 6; i >= 0; --i) {
			while (tot >= vtbl[digits[i]]) {
				ans += digits[i];
				tot -= vtbl[digits[i]];
			}
			if (i > 0 && tot >= vtbl[digits[i]] - vtbl[digits[i - 1]]) {
				ans += digits[i - 1];
				ans += digits[i];
				tot -= vtbl[digits[i]] - vtbl[digits[i - 1]];
			}
		}
	}
	cout << ans << endl;
	return 0;
}
0