結果
問題 | No.518 ローマ数字の和 |
ユーザー | Shun_PI |
提出日時 | 2017-05-28 22:17:32 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,411 bytes |
コンパイル時間 | 2,722 ms |
コンパイル使用メモリ | 78,540 KB |
実行使用メモリ | 36,948 KB |
最終ジャッジ日時 | 2024-09-21 15:33:09 |
合計ジャッジ時間 | 4,303 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 53 ms
36,472 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 55 ms
36,876 KB |
testcase_05 | AC | 53 ms
36,428 KB |
testcase_06 | AC | 54 ms
36,552 KB |
testcase_07 | WA | - |
testcase_08 | AC | 54 ms
36,388 KB |
testcase_09 | AC | 53 ms
36,600 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 53 ms
36,692 KB |
testcase_14 | AC | 52 ms
36,928 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 53 ms
36,948 KB |
testcase_18 | AC | 52 ms
36,660 KB |
testcase_19 | AC | 53 ms
36,928 KB |
testcase_20 | AC | 54 ms
36,948 KB |
testcase_21 | AC | 53 ms
36,708 KB |
ソースコード
import java.io.IOException; import java.io.InputStream; import java.util.ArrayDeque; import java.util.NoSuchElementException; public class Main { private static FastScanner sc = new FastScanner(); public static void main(String[] args) { int N = sc.nextInt(); int value = 0; for(int i=0; i<N; i++) { char[] R = sc.next().toCharArray(); value += romanToInt(R); } if(value >= 4000) { System.out.println("ERROR"); return; } intToRoman(value); } static int romanToInt(char[] R) { ArrayDeque<Character> chr = new ArrayDeque<>(); for(int i=0; i<R.length; i++) { chr.addFirst(R[i]); } int ans = 0; while(!chr.isEmpty() && chr.peek() == 'I') { chr.poll(); ans += 1; } if(!chr.isEmpty() && chr.peek() == 'V') { chr.poll(); if(!chr.isEmpty() && chr.peek() == 'I') { chr.poll(); ans += 4; } else { ans += 5; } } if(!chr.isEmpty() && chr.peek() == 'X') { chr.poll(); if(!chr.isEmpty() && chr.peek() == 'I') { chr.poll(); ans += 9; } else { chr.add('X'); } } while(!chr.isEmpty() && chr.peek() == 'X') { chr.poll(); ans += 10; } if(!chr.isEmpty() && chr.peek() == 'L') { chr.poll(); if(!chr.isEmpty() && chr.peek() == 'X') { chr.poll(); ans += 40; } else { ans += 50; } } if(!chr.isEmpty() && chr.peek() == 'C') { chr.poll(); if(!chr.isEmpty() && chr.peek() == 'X') { chr.poll(); ans += 90; } else { chr.add('C'); } } while(!chr.isEmpty() && chr.peek() == 'C') { chr.poll(); ans += 100; } if(!chr.isEmpty() && chr.peek() == 'D') { chr.poll(); if(!chr.isEmpty() && chr.peek() == 'C') { chr.poll(); ans += 400; } else { ans += 500; } } if(!chr.isEmpty() && chr.peek() == 'M') { chr.poll(); if(!chr.isEmpty() && chr.peek() == 'C') { chr.poll(); ans += 900; } else { chr.add('M'); } } while(!chr.isEmpty() && chr.peek() == 'M') { chr.poll(); ans += 1000; } return ans; } static void intToRoman(int value) { int d4 = value / 1000; value %= 1000; for(int i=0; i<d4; i++) { System.out.print("M"); } int d3 = value / 100; value %= 100; if(d3 == 9) { System.out.print("CM"); } else if(d3 == 4) { System.out.print("CD"); } else { if(d3 >= 5) { System.out.print("D"); d3 -= 5; } for(int i=0; i<d3; i++) { System.out.print("C"); } } int d2 = value / 10; value %= 10; if(d2 == 9) { System.out.print("XC"); } else if(d2 == 4) { System.out.print("XL"); } else { if(d2 >= 5) { System.out.print("L"); d2 -= 5; } for(int i=0; i<d2; i++) { System.out.print("X"); } } int d1 = value; if(d1 == 9) { System.out.print("IX"); } else if(d1 == 4) { System.out.print("IV"); } else { if(d1 >= 5) { System.out.print("V"); d1 -= 5; } for(int i=0; i<d1; i++) { System.out.print("I"); } } System.out.println(); } static class FastScanner { private final InputStream in = System.in; private final byte[] buffer = new byte[1024]; private int ptr = 0; private int buflen = 0; private boolean hasNextByte() { if (ptr < buflen) { return true; }else{ ptr = 0; try { buflen = in.read(buffer); } catch (IOException e) { e.printStackTrace(); } if (buflen <= 0) { return false; } } return true; } private int readByte() { if (hasNextByte()) return buffer[ptr++]; else return -1;} private static boolean isPrintableChar(int c) { return 33 <= c && c <= 126;} private void skipUnprintable() { while(hasNextByte() && !isPrintableChar(buffer[ptr])) ptr++;} public boolean hasNext() { skipUnprintable(); return hasNextByte();} public String next() { if (!hasNext()) throw new NoSuchElementException(); StringBuilder sb = new StringBuilder(); int b = readByte(); while(isPrintableChar(b)) { sb.appendCodePoint(b); b = readByte(); } return sb.toString(); } public long nextLong() { return Long.parseLong(next()); } public int nextInt(){ return Integer.parseInt(next()); } } }