結果

問題 No.405 ローマ数字の腕時計
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-05-03 13:34:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 50 ms / 2,000 ms
コード長 929 bytes
コンパイル時間 2,230 ms
コンパイル使用メモリ 75,640 KB
実行使用メモリ 50,428 KB
最終ジャッジ日時 2024-07-06 19:11:07
合計ジャッジ時間 3,975 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
50,428 KB
testcase_01 AC 47 ms
50,064 KB
testcase_02 AC 47 ms
50,280 KB
testcase_03 AC 47 ms
49,940 KB
testcase_04 AC 46 ms
50,364 KB
testcase_05 AC 47 ms
50,132 KB
testcase_06 AC 46 ms
50,312 KB
testcase_07 AC 46 ms
50,060 KB
testcase_08 AC 44 ms
50,200 KB
testcase_09 AC 45 ms
50,056 KB
testcase_10 AC 45 ms
50,256 KB
testcase_11 AC 49 ms
50,076 KB
testcase_12 AC 49 ms
50,268 KB
testcase_13 AC 50 ms
50,200 KB
testcase_14 AC 49 ms
50,348 KB
testcase_15 AC 49 ms
50,416 KB
testcase_16 AC 46 ms
50,088 KB
testcase_17 AC 45 ms
49,944 KB
testcase_18 AC 45 ms
50,360 KB
testcase_19 AC 47 ms
50,344 KB
testcase_20 AC 45 ms
49,848 KB
testcase_21 AC 45 ms
50,428 KB
testcase_22 AC 46 ms
50,276 KB
testcase_23 AC 46 ms
50,408 KB
testcase_24 AC 46 ms
50,184 KB
testcase_25 AC 47 ms
50,208 KB
testcase_26 AC 46 ms
50,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.HashMap;
import java.util.Map;

import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {

        String[] table = new String[]{"XII", "I", "II", "III", "IIII", "V", "VI",
                "VII", "VIII", "IX", "X", "XI"};
        Map<String, Integer> map1 = new HashMap<>();
        Map<Integer, String> map2 = new HashMap<>();

        for (int i = 0; i < table.length; i++) {
            map1.put(table[i], i);
            map2.put(i, table[i]);
        }

        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        String[] inputs = reader.readLine().split(" ");
        String S1 = inputs[0];
        int T = Integer.parseInt(inputs[1]);

        System.out.println(map2.get((map1.get(S1) + T + 1200) % 12));
        
    }
}
0