結果

問題 No.405 ローマ数字の腕時計
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-13 20:14:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 603 bytes
コンパイル時間 2,294 ms
コンパイル使用メモリ 74,440 KB
実行使用メモリ 54,296 KB
最終ジャッジ日時 2024-07-06 19:07:43
合計ジャッジ時間 6,090 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
53,008 KB
testcase_01 AC 117 ms
54,116 KB
testcase_02 AC 120 ms
54,092 KB
testcase_03 AC 122 ms
53,844 KB
testcase_04 AC 123 ms
54,012 KB
testcase_05 AC 124 ms
54,180 KB
testcase_06 AC 121 ms
54,164 KB
testcase_07 AC 122 ms
54,096 KB
testcase_08 AC 121 ms
54,224 KB
testcase_09 AC 123 ms
54,180 KB
testcase_10 AC 121 ms
54,016 KB
testcase_11 AC 118 ms
53,908 KB
testcase_12 AC 122 ms
54,048 KB
testcase_13 AC 121 ms
54,048 KB
testcase_14 AC 121 ms
54,296 KB
testcase_15 AC 109 ms
53,140 KB
testcase_16 AC 121 ms
54,008 KB
testcase_17 AC 112 ms
52,820 KB
testcase_18 AC 115 ms
53,092 KB
testcase_19 AC 121 ms
54,152 KB
testcase_20 AC 123 ms
54,252 KB
testcase_21 AC 122 ms
53,836 KB
testcase_22 AC 123 ms
53,848 KB
testcase_23 AC 119 ms
53,968 KB
testcase_24 AC 120 ms
54,096 KB
testcase_25 AC 123 ms
53,848 KB
testcase_26 AC 121 ms
53,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String S = sc.next();
        int T = sc.nextInt();
        String [] arr = {"I","II","III","IIII","V","VI","VII","VIII","IX","X","XI","XII"};
        int now = 0;
        for(int i=0; i<12; i++){
            if( S.equals(arr[i]) ){
                now=i;
            }
        }
        T=T%12;
        if(T<0){
            T=T+12;
        }
        now=now+T;
        while(now>11){
            now=now-12;
        }
        System.out.println(arr[now]);
    }
}
0