結果

問題 No.405 ローマ数字の腕時計
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-18 20:35:02
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 576 bytes
コンパイル時間 1,868 ms
コンパイル使用メモリ 73,984 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-10-01 20:30:45
合計ジャッジ時間 5,950 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
41,060 KB
testcase_01 AC 114 ms
40,968 KB
testcase_02 RE -
testcase_03 AC 103 ms
40,044 KB
testcase_04 AC 116 ms
41,160 KB
testcase_05 AC 116 ms
41,028 KB
testcase_06 AC 110 ms
41,340 KB
testcase_07 AC 121 ms
41,200 KB
testcase_08 AC 109 ms
40,056 KB
testcase_09 AC 109 ms
40,224 KB
testcase_10 AC 106 ms
40,052 KB
testcase_11 AC 105 ms
40,500 KB
testcase_12 AC 103 ms
40,128 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 103 ms
39,892 KB
testcase_18 RE -
testcase_19 AC 116 ms
41,104 KB
testcase_20 RE -
testcase_21 AC 113 ms
41,256 KB
testcase_22 RE -
testcase_23 AC 115 ms
40,896 KB
testcase_24 AC 114 ms
41,276 KB
testcase_25 AC 115 ms
41,080 KB
testcase_26 AC 122 ms
40,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    String s1 = sc.next();
    int T = sc.nextInt();
    String[] time = {"XII", "I","II","III","IIII","V","VI","VII","VIII","IX","X","XI"};
    int s = 0;
    if(s1.contains("V")) {
      s = s1.length() + 4;
    } else if(s1.contains("X")) {
      if(s1.charAt(0) == 'I') {
        s = 9;
      } else {
        s = s1.length() + 9;
      }
    } else {
      s = s1.length();
    }
    s += T;
    s = s % 12;
    System.out.println(time[s]);
  }
}
0