結果

問題 No.405 ローマ数字の腕時計
ユーザー jimanojimano
提出日時 2018-01-25 20:01:51
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 843 bytes
コンパイル時間 2,993 ms
コンパイル使用メモリ 74,584 KB
実行使用メモリ 50,572 KB
最終ジャッジ日時 2024-06-08 01:45:19
合計ジャッジ時間 5,196 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
37,092 KB
testcase_01 AC 51 ms
37,220 KB
testcase_02 AC 50 ms
37,164 KB
testcase_03 AC 50 ms
36,940 KB
testcase_04 AC 51 ms
37,040 KB
testcase_05 AC 49 ms
36,808 KB
testcase_06 RE -
testcase_07 AC 51 ms
37,072 KB
testcase_08 AC 52 ms
37,172 KB
testcase_09 RE -
testcase_10 AC 51 ms
36,960 KB
testcase_11 AC 53 ms
37,228 KB
testcase_12 RE -
testcase_13 AC 51 ms
36,968 KB
testcase_14 AC 51 ms
37,040 KB
testcase_15 AC 51 ms
37,096 KB
testcase_16 AC 52 ms
37,148 KB
testcase_17 RE -
testcase_18 AC 52 ms
36,940 KB
testcase_19 AC 51 ms
36,928 KB
testcase_20 AC 51 ms
37,164 KB
testcase_21 AC 53 ms
36,800 KB
testcase_22 AC 53 ms
36,780 KB
testcase_23 AC 51 ms
36,852 KB
testcase_24 AC 52 ms
37,168 KB
testcase_25 RE -
testcase_26 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;

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

public class No0405 {
	public static void main(String[] args) {
		try (BufferedReader br = new BufferedReader(new InputStreamReader(System.in))) {
			String[] input = br.readLine().split(" ");
			String[] roman = { "I", "II", "III", "IIII", "V", "VI", "VII", "VIII", "IX", "X", "XI", "XII" };

			// いま何時?
			int hour = 1;
			for (int i = 0; i < roman.length; i++) {
				if (input[0].equals(roman[i])) {
					hour = i + 1;
					break;
				}
			}

			// 現在時刻+T時を12で割ったあまりだけ進むor戻る
			int ans = (hour + Integer.parseInt(input[1])) % 12;
			ans = (ans >= 0 ? ans : ans + 12);
			System.out.println(roman[ans - 1]);

		} catch (IOException e) {
			e.printStackTrace();
		}
	}
}
0