結果

問題 No.405 ローマ数字の腕時計
ユーザー TwinkleStar74TwinkleStar74
提出日時 2017-10-18 00:00:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 821 bytes
コンパイル時間 3,290 ms
コンパイル使用メモリ 74,608 KB
実行使用メモリ 50,520 KB
最終ジャッジ日時 2024-07-06 19:14:25
合計ジャッジ時間 5,126 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,236 KB
testcase_01 AC 48 ms
50,012 KB
testcase_02 AC 51 ms
50,448 KB
testcase_03 AC 50 ms
50,004 KB
testcase_04 AC 54 ms
50,520 KB
testcase_05 AC 51 ms
50,352 KB
testcase_06 AC 50 ms
50,020 KB
testcase_07 AC 51 ms
50,392 KB
testcase_08 AC 49 ms
50,256 KB
testcase_09 AC 50 ms
49,944 KB
testcase_10 AC 49 ms
50,256 KB
testcase_11 AC 49 ms
50,392 KB
testcase_12 AC 50 ms
50,276 KB
testcase_13 AC 52 ms
50,324 KB
testcase_14 AC 52 ms
49,964 KB
testcase_15 AC 49 ms
50,272 KB
testcase_16 AC 49 ms
50,332 KB
testcase_17 AC 49 ms
50,248 KB
testcase_18 AC 50 ms
50,196 KB
testcase_19 AC 51 ms
50,352 KB
testcase_20 AC 50 ms
50,368 KB
testcase_21 AC 51 ms
50,284 KB
testcase_22 AC 50 ms
50,252 KB
testcase_23 AC 51 ms
50,104 KB
testcase_24 AC 50 ms
50,104 KB
testcase_25 AC 49 ms
50,404 KB
testcase_26 AC 49 ms
50,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class No405 {

	public static void main(String[] args) throws IOException{
		String[] romeNum = {"XII","I","II","III","IIII","V","VI","VII","VIII","IX","X","XI"};
		String[] temp = new BufferedReader(new InputStreamReader(System.in)).readLine().split(" ");
		int nowTime = getTime(romeNum, temp[0]);
		System.out.println(romeNum[getAnswerTime(nowTime,temp[1])]);
	}
	
	public static int getTime(String[] a, String b){
		int time = 0;
		for(int i=0; i< a.length; i++){
			if(a[i].equals(b)) time = i;
		}
		return time;
		
	}
	
	public static int getAnswerTime(int a,String b){
		int pastTime = Integer.parseInt(b);
		int answerTime = (a + pastTime) % 12;
		if(answerTime < 0) answerTime += 12;
		return answerTime;
	}
}
0