結果

問題 No.405 ローマ数字の腕時計
ユーザー kenji_shioyakenji_shioya
提出日時 2016-10-23 01:20:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 1,122 bytes
コンパイル時間 2,956 ms
コンパイル使用メモリ 78,364 KB
実行使用メモリ 54,252 KB
最終ジャッジ日時 2024-07-06 19:07:31
合計ジャッジ時間 6,706 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,916 KB
testcase_01 AC 95 ms
52,740 KB
testcase_02 AC 112 ms
54,080 KB
testcase_03 AC 103 ms
52,728 KB
testcase_04 AC 98 ms
52,708 KB
testcase_05 AC 102 ms
52,824 KB
testcase_06 AC 112 ms
54,168 KB
testcase_07 AC 113 ms
54,080 KB
testcase_08 AC 103 ms
52,748 KB
testcase_09 AC 112 ms
54,028 KB
testcase_10 AC 99 ms
53,060 KB
testcase_11 AC 119 ms
54,000 KB
testcase_12 AC 117 ms
54,012 KB
testcase_13 AC 112 ms
53,884 KB
testcase_14 AC 102 ms
52,968 KB
testcase_15 AC 115 ms
54,000 KB
testcase_16 AC 97 ms
52,368 KB
testcase_17 AC 100 ms
53,004 KB
testcase_18 AC 103 ms
52,816 KB
testcase_19 AC 113 ms
54,200 KB
testcase_20 AC 122 ms
54,092 KB
testcase_21 AC 103 ms
52,976 KB
testcase_22 AC 103 ms
53,016 KB
testcase_23 AC 116 ms
54,252 KB
testcase_24 AC 106 ms
52,976 KB
testcase_25 AC 112 ms
54,144 KB
testcase_26 AC 110 ms
53,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Exercise160 {
  public static void main(String[] args){
    Scanner sc = new Scanner(System.in);
    int time = toNum(sc.next());
    int hour = sc.nextInt();
    int num = (time + hour) % 12;
    if(num < 0){
      num = 12 + num;
    }
    System.out.println(toStr(num));
  }
  public static int toNum(String str){
    HashMap<String, Integer> map = new HashMap<String, Integer>();
    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", 0);
    return map.get(str);
  }
  public static String toStr(int num){
    HashMap<Integer, String> map = new HashMap<Integer, String>();
    map.put(1, "I");
    map.put(2, "II");
    map.put(3, "III");
    map.put(4, "IIII");
    map.put(5, "V");
    map.put(6, "VI");
    map.put(7, "VII");
    map.put(8, "VIII");
    map.put(9, "IX");
    map.put(10, "X");
    map.put(11, "XI");
    map.put(0, "XII");
    return map.get(num);
  }
}
0