結果

問題 No.405 ローマ数字の腕時計
ユーザー fukuseifukusei
提出日時 2017-05-27 15:07:04
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 719 bytes
コンパイル時間 1,937 ms
コンパイル使用メモリ 74,244 KB
実行使用メモリ 41,508 KB
最終ジャッジ日時 2024-09-21 14:34:36
合計ジャッジ時間 5,856 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,168 KB
testcase_01 AC 115 ms
41,208 KB
testcase_02 AC 104 ms
40,120 KB
testcase_03 AC 120 ms
41,508 KB
testcase_04 AC 107 ms
40,216 KB
testcase_05 AC 119 ms
41,260 KB
testcase_06 AC 108 ms
40,176 KB
testcase_07 AC 116 ms
41,080 KB
testcase_08 AC 119 ms
41,300 KB
testcase_09 AC 121 ms
41,156 KB
testcase_10 AC 119 ms
41,056 KB
testcase_11 AC 105 ms
40,248 KB
testcase_12 WA -
testcase_13 AC 118 ms
41,300 KB
testcase_14 AC 116 ms
41,092 KB
testcase_15 AC 100 ms
39,844 KB
testcase_16 AC 111 ms
41,236 KB
testcase_17 AC 113 ms
41,212 KB
testcase_18 AC 118 ms
41,144 KB
testcase_19 AC 104 ms
39,744 KB
testcase_20 AC 112 ms
41,148 KB
testcase_21 AC 121 ms
41,216 KB
testcase_22 AC 102 ms
39,612 KB
testcase_23 AC 104 ms
40,304 KB
testcase_24 AC 98 ms
39,828 KB
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class test{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		
		String S1 = sc.next();
		int def = 0;
		int sum = 0;
		int T = sc.nextInt();
		
		String roma[] = {"I","II","III","IIII","V","VI","VII","VIII","IX","X","XI","XII"};
		
		for(int i=0; i<roma.length; i++){
			if(S1.equals(roma[i])){
				def = i+1;
			}
		}
		
		while(def > 12){
			def -= 12;
		}
		while(def <= -12){
			def += 12;
		}
		while(T > 12){
			T -= 12;
		}
		while(T <= -12){
			T += 12;
		}
		
		sum = def + T;
		
		while(sum > 12){
			sum -= 12;
		}
		while(sum < 0){
			sum += 12;
		}
		
		for(int i=0; i<roma.length; i++){
			if(sum == i+1){
				System.out.println(roma[i]);
			}
		}
	}
}
0