結果

問題 No.405 ローマ数字の腕時計
ユーザー atkrymatkrym
提出日時 2016-10-18 12:07:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 954 bytes
コンパイル時間 2,776 ms
コンパイル使用メモリ 79,820 KB
実行使用メモリ 41,816 KB
最終ジャッジ日時 2024-07-06 19:07:14
合計ジャッジ時間 6,420 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,504 KB
testcase_01 AC 114 ms
41,284 KB
testcase_02 AC 123 ms
41,496 KB
testcase_03 AC 125 ms
41,368 KB
testcase_04 AC 124 ms
41,496 KB
testcase_05 AC 126 ms
41,328 KB
testcase_06 AC 119 ms
40,344 KB
testcase_07 AC 113 ms
41,592 KB
testcase_08 AC 119 ms
41,324 KB
testcase_09 AC 130 ms
41,388 KB
testcase_10 AC 130 ms
41,204 KB
testcase_11 AC 131 ms
41,468 KB
testcase_12 AC 130 ms
41,508 KB
testcase_13 AC 125 ms
41,396 KB
testcase_14 AC 125 ms
41,504 KB
testcase_15 AC 116 ms
41,248 KB
testcase_16 AC 117 ms
41,188 KB
testcase_17 AC 128 ms
41,500 KB
testcase_18 AC 123 ms
41,480 KB
testcase_19 AC 125 ms
41,616 KB
testcase_20 AC 123 ms
41,416 KB
testcase_21 AC 130 ms
41,816 KB
testcase_22 AC 132 ms
41,336 KB
testcase_23 AC 130 ms
41,356 KB
testcase_24 AC 131 ms
41,472 KB
testcase_25 AC 130 ms
41,312 KB
testcase_26 AC 128 ms
41,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        Map<String, Integer> map = new HashMap<>();
        map.put("I", 1);
        map.put("II", 2);
        map.put("III", 3);
        map.put("IIII", 4);
        map.put("V", 5);
        map.put("VI", 6);
        map.put("VII", 7);
        map.put("VIII", 8);
        map.put("IX", 9);
        map.put("X", 10);
        map.put("XI", 11);
        map.put("XII", 12);
        
        String s = sc.next();
        
        int t = map.get(s);
        
        int diff = sc.nextInt() % 12;
        diff = diff < 0 ? diff + 12 : diff;
        t += diff;
        if (t > 12) t -= 12;
        
        for (Map.Entry<String, Integer> entry : map.entrySet()) {
            if (entry.getValue() == t) {
                System.out.println(entry.getKey());
            }
        }
        
    }
}
0