結果
問題 | No.518 ローマ数字の和 |
ユーザー | hotpepsi |
提出日時 | 2017-06-17 22:45:52 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 945 bytes |
コンパイル時間 | 596 ms |
コンパイル使用メモリ | 60,792 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-01 11:48:08 |
合計ジャッジ時間 | 1,237 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 1 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 1 ms
5,248 KB |
testcase_10 | AC | 1 ms
5,248 KB |
testcase_11 | AC | 1 ms
5,248 KB |
testcase_12 | AC | 2 ms
5,248 KB |
testcase_13 | AC | 1 ms
5,248 KB |
testcase_14 | AC | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 1 ms
5,248 KB |
testcase_17 | AC | 1 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 1 ms
5,248 KB |
testcase_20 | AC | 1 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
ソースコード
#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]]; } int j = 2 - (i % 2); if (i >= j && tot >= vtbl[digits[i]] - vtbl[digits[i - j]]) { ans += digits[i - j]; ans += digits[i]; tot -= vtbl[digits[i]] - vtbl[digits[i - j]]; } } } cout << ans << endl; return 0; }