結果

問題 No.405 ローマ数字の腕時計
ユーザー キョウチクキョウチク
提出日時 2022-05-15 00:02:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 504 bytes
コンパイル時間 2,987 ms
コンパイル使用メモリ 75,284 KB
実行使用メモリ 54,256 KB
最終ジャッジ日時 2024-07-06 19:35:25
合計ジャッジ時間 6,568 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
53,100 KB
testcase_01 AC 110 ms
54,140 KB
testcase_02 AC 106 ms
53,992 KB
testcase_03 AC 100 ms
52,984 KB
testcase_04 AC 110 ms
53,812 KB
testcase_05 AC 105 ms
53,832 KB
testcase_06 AC 107 ms
53,940 KB
testcase_07 AC 107 ms
53,872 KB
testcase_08 AC 103 ms
53,468 KB
testcase_09 AC 102 ms
52,940 KB
testcase_10 AC 99 ms
52,888 KB
testcase_11 AC 110 ms
53,704 KB
testcase_12 AC 106 ms
53,928 KB
testcase_13 AC 114 ms
54,256 KB
testcase_14 AC 105 ms
53,732 KB
testcase_15 AC 105 ms
53,364 KB
testcase_16 AC 114 ms
53,976 KB
testcase_17 AC 111 ms
53,988 KB
testcase_18 AC 111 ms
54,112 KB
testcase_19 AC 108 ms
53,988 KB
testcase_20 AC 108 ms
54,016 KB
testcase_21 AC 113 ms
53,972 KB
testcase_22 AC 104 ms
52,940 KB
testcase_23 AC 103 ms
52,652 KB
testcase_24 AC 113 ms
54,164 KB
testcase_25 AC 109 ms
54,176 KB
testcase_26 AC 101 ms
52,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Test10 {
  public static void main(String[] args){
    String[] exchange={
      "XII","I","II","III","IIII","V","VI","VII","VIII","IX","X","XI"
    };
    Scanner sc=new Scanner(System.in);
    String[] line;
    line=sc.nextLine().split(" ");
    int h=-1;
    for(int i=0;i<12;i++){
      if(line[0].equals(exchange[i])){
        h=(i+Integer.parseInt(line[1]))%12;
        break;
      }
    }
    if(h<0) h+=(h-11)/-12*12;
    System.out.println(exchange[h]);
  }
}
0