結果

問題 No.405 ローマ数字の腕時計
ユーザー eagleeagle
提出日時 2022-06-20 10:26:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 749 bytes
コンパイル時間 1,781 ms
コンパイル使用メモリ 74,924 KB
実行使用メモリ 54,460 KB
最終ジャッジ日時 2024-07-06 19:35:36
合計ジャッジ時間 5,818 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
52,832 KB
testcase_01 AC 107 ms
53,044 KB
testcase_02 AC 120 ms
53,940 KB
testcase_03 AC 123 ms
54,180 KB
testcase_04 AC 119 ms
53,852 KB
testcase_05 AC 118 ms
54,116 KB
testcase_06 AC 117 ms
53,892 KB
testcase_07 AC 119 ms
54,108 KB
testcase_08 AC 124 ms
53,844 KB
testcase_09 AC 120 ms
53,980 KB
testcase_10 AC 117 ms
53,984 KB
testcase_11 AC 123 ms
54,124 KB
testcase_12 AC 117 ms
53,856 KB
testcase_13 AC 117 ms
54,256 KB
testcase_14 AC 124 ms
54,460 KB
testcase_15 AC 116 ms
53,980 KB
testcase_16 AC 111 ms
53,632 KB
testcase_17 AC 107 ms
52,940 KB
testcase_18 AC 119 ms
53,956 KB
testcase_19 AC 119 ms
54,024 KB
testcase_20 AC 107 ms
53,096 KB
testcase_21 AC 129 ms
53,808 KB
testcase_22 AC 118 ms
54,112 KB
testcase_23 AC 118 ms
53,836 KB
testcase_24 AC 111 ms
52,972 KB
testcase_25 AC 125 ms
54,004 KB
testcase_26 AC 121 ms
54,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

	public static void main(String[] args) {
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		String[] timer = {
				"I", "II", "III", "IIII", "V", "VI",
				"VII", "VIII", "IX", "X", "XI", "XII"
		};
		String S1 = sc.next();
		int T = sc.nextInt();
		//現在の時刻を求める
		int time = 0;
		for(int i = 0; i < timer.length; i++) {
			if(S1.equals(timer[i])) {
				time = i;
			}
		}
		//指定された時刻だけ時間を進める
		time += T;
		if(time < 0) {
			while(time < 0) {
				time += 12;
			}
		} else {
			time %= 12;
		}
		//進めた後の時間からローマ数字を求める
		String ans = timer[time];
		System.out.println(ans);
	}
}
0