結果

問題 No.405 ローマ数字の腕時計
ユーザー HEGO55HEGO55
提出日時 2017-05-27 15:22:51
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 750 bytes
コンパイル時間 1,942 ms
コンパイル使用メモリ 77,692 KB
実行使用メモリ 41,720 KB
最終ジャッジ日時 2024-09-21 14:34:53
合計ジャッジ時間 5,910 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
39,860 KB
testcase_01 AC 122 ms
41,104 KB
testcase_02 AC 120 ms
41,204 KB
testcase_03 AC 117 ms
41,104 KB
testcase_04 AC 118 ms
41,376 KB
testcase_05 AC 124 ms
41,332 KB
testcase_06 AC 124 ms
41,720 KB
testcase_07 AC 126 ms
41,216 KB
testcase_08 AC 109 ms
40,184 KB
testcase_09 AC 109 ms
40,084 KB
testcase_10 AC 103 ms
40,168 KB
testcase_11 AC 107 ms
39,744 KB
testcase_12 AC 117 ms
41,200 KB
testcase_13 AC 115 ms
41,284 KB
testcase_14 AC 100 ms
39,932 KB
testcase_15 AC 126 ms
41,220 KB
testcase_16 AC 118 ms
41,448 KB
testcase_17 AC 123 ms
41,404 KB
testcase_18 AC 111 ms
41,012 KB
testcase_19 AC 118 ms
41,120 KB
testcase_20 AC 102 ms
39,744 KB
testcase_21 AC 114 ms
41,360 KB
testcase_22 AC 114 ms
41,216 KB
testcase_23 AC 119 ms
41,036 KB
testcase_24 AC 117 ms
41,152 KB
testcase_25 RE -
testcase_26 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class No405{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int t = 0;
		
		String[] S1List = {"I","II","III","IIII","V","VI","VII","VIII","IX","X","XI","XII"};
		int[] TList     = {1,2,3,4,5,6,7,8,9,10,11,12};
			
		String S1 = sc.next();
		int T = sc.nextInt();
		
		for(int i=0; i<S1List.length; i++){
			if(S1List[i].equals(S1)){
				t = TList[i];
			}
		}
		
		int add = T + t;
		if(add>0){
			if(add<=12){
				System.out.println(S1List[add-1]);
			}else{
				while(add>12){
				   add -= 12;
				}
				System.out.println(S1List[add-1]);
			}
		}else if(add<0){
			while(add<0){
			add += 12;
		}
			System.out.println(S1List[add-1]);
		}else{
			System.out.println(S1List[11]);
		}
	}
}
		
0