結果
問題 | No.518 ローマ数字の和 |
ユーザー | Grenache |
提出日時 | 2017-05-28 21:42:25 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 126 ms / 2,000 ms |
コード長 | 1,660 bytes |
コンパイル時間 | 3,641 ms |
コンパイル使用メモリ | 77,820 KB |
実行使用メモリ | 41,532 KB |
最終ジャッジ日時 | 2024-09-21 15:19:55 |
合計ジャッジ時間 | 6,412 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 111 ms
40,628 KB |
testcase_01 | AC | 115 ms
41,408 KB |
testcase_02 | AC | 107 ms
40,344 KB |
testcase_03 | AC | 124 ms
41,200 KB |
testcase_04 | AC | 124 ms
41,096 KB |
testcase_05 | AC | 114 ms
40,772 KB |
testcase_06 | AC | 118 ms
41,532 KB |
testcase_07 | AC | 119 ms
41,328 KB |
testcase_08 | AC | 126 ms
41,144 KB |
testcase_09 | AC | 103 ms
40,376 KB |
testcase_10 | AC | 117 ms
41,332 KB |
testcase_11 | AC | 115 ms
41,336 KB |
testcase_12 | AC | 114 ms
40,448 KB |
testcase_13 | AC | 115 ms
41,344 KB |
testcase_14 | AC | 107 ms
40,284 KB |
testcase_15 | AC | 115 ms
40,132 KB |
testcase_16 | AC | 115 ms
40,684 KB |
testcase_17 | AC | 115 ms
41,236 KB |
testcase_18 | AC | 108 ms
40,856 KB |
testcase_19 | AC | 115 ms
41,360 KB |
testcase_20 | AC | 106 ms
40,184 KB |
testcase_21 | AC | 105 ms
40,312 KB |
ソースコード
import java.io.*; import java.util.*; public class Main_yukicoder518 { private static Scanner sc; private static Printer pr; private static void solve() { int n = sc.nextInt(); String[] r = new String[n]; int ret = 0; for (int i = 0; i < n; i++) { r[i] = sc.next(); ret += conv(r[i]); } if (ret > 3999) { pr.println("ERROR"); } else { pr.println(rconv(ret)); // pr.println(ret); } } private static String[] xxx = {"MMM", "MM", "M", "CM", "DCCC", "DCC", "DC", "D", "CD", "CCC", "CC", "C", "XC", "LXXX", "LXX", "LX", "L", "XL", "XXX", "XX", "X", "IX", "VIII", "VII", "VI", "V", "IV", "III", "II", "I"}; private static int[] xxi = {3000, 2000, 1000, 900, 800, 700, 600, 500, 400, 300, 200, 100, 90, 80, 70, 60, 50, 40, 30, 20, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1}; private static int conv(String r) { int ret = 0; while (r.length() > 0) { for (int i = 0, size = xxx.length; i < size; i++) { if (r.startsWith(xxx[i])) { ret += xxi[i]; r = r.substring(xxx[i].length()); break; } } } return ret; } private static String rconv(int r) { StringBuilder ret = new StringBuilder(); while (r > 0) { for (int i = 0, size = xxi.length; i < size; i++) { if (r >= xxi[i]) { ret.append(xxx[i]); r -= xxi[i]; break; } } } return ret.toString(); } // --------------------------------------------------- public static void main(String[] args) { sc = new Scanner(System.in); pr = new Printer(System.out); solve(); pr.close(); sc.close(); } private static class Printer extends PrintWriter { Printer(PrintStream out) { super(out); } } }