結果

問題 No.405 ローマ数字の腕時計
ユーザー TakaTaka
提出日時 2016-09-06 16:38:44
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 650 bytes
コンパイル時間 3,535 ms
コンパイル使用メモリ 77,256 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-06-06 12:31:44
合計ジャッジ時間 8,220 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
40,764 KB
testcase_01 AC 136 ms
41,076 KB
testcase_02 AC 134 ms
41,024 KB
testcase_03 AC 138 ms
41,000 KB
testcase_04 AC 136 ms
41,072 KB
testcase_05 AC 135 ms
41,144 KB
testcase_06 RE -
testcase_07 AC 135 ms
40,736 KB
testcase_08 AC 135 ms
41,368 KB
testcase_09 RE -
testcase_10 AC 136 ms
41,048 KB
testcase_11 AC 137 ms
41,152 KB
testcase_12 RE -
testcase_13 AC 136 ms
41,392 KB
testcase_14 AC 135 ms
41,236 KB
testcase_15 AC 136 ms
41,132 KB
testcase_16 AC 134 ms
40,632 KB
testcase_17 RE -
testcase_18 AC 136 ms
41,148 KB
testcase_19 AC 135 ms
40,980 KB
testcase_20 AC 135 ms
40,788 KB
testcase_21 AC 135 ms
40,872 KB
testcase_22 AC 134 ms
40,984 KB
testcase_23 AC 134 ms
40,944 KB
testcase_24 AC 136 ms
41,028 KB
testcase_25 RE -
testcase_26 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class a{
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		
        String S1 = sc.next();
        int T=sc.nextInt();
		int S2=0;
		int num;
		
		String str[] = new String[12];
		
		str[0]="I"; str[1]="II"; str[2]="III";
		str[3]="IIII"; str[4]="V"; str[5]="VI";
		str[6]="VII"; str[7]="VIII"; str[8]="IX";
		str[9]="X"; str[10]="XI"; str[11]="XII";
		
		for(int i=0; i<12; i++){
			if(S1.equals(str[i])){
				if(T<-12){
					T=(T*(-1)%12)*(-1);
					T=T+12;
				}else if(T<0){
					T=T+12;
				}
				S2=(T+(i+1))%12;
			}
		}
		
		
		System.out.println(str[S2-1]);
    }
}
0