結果

問題 No.405 ローマ数字の腕時計
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-13 16:38:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 604 bytes
コンパイル時間 1,994 ms
コンパイル使用メモリ 74,740 KB
実行使用メモリ 56,016 KB
最終ジャッジ日時 2024-07-06 19:14:19
合計ジャッジ時間 6,144 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,216 KB
testcase_01 AC 114 ms
53,048 KB
testcase_02 AC 124 ms
54,112 KB
testcase_03 AC 111 ms
53,040 KB
testcase_04 AC 115 ms
53,588 KB
testcase_05 AC 125 ms
53,888 KB
testcase_06 AC 127 ms
54,076 KB
testcase_07 AC 110 ms
53,032 KB
testcase_08 AC 125 ms
53,860 KB
testcase_09 AC 125 ms
54,296 KB
testcase_10 AC 124 ms
53,944 KB
testcase_11 AC 121 ms
53,888 KB
testcase_12 AC 118 ms
54,116 KB
testcase_13 AC 123 ms
54,124 KB
testcase_14 AC 120 ms
54,200 KB
testcase_15 AC 124 ms
54,124 KB
testcase_16 AC 117 ms
54,272 KB
testcase_17 AC 124 ms
54,024 KB
testcase_18 AC 123 ms
53,904 KB
testcase_19 AC 120 ms
54,220 KB
testcase_20 AC 112 ms
53,056 KB
testcase_21 AC 122 ms
54,108 KB
testcase_22 AC 126 ms
56,016 KB
testcase_23 AC 108 ms
52,876 KB
testcase_24 AC 123 ms
54,116 KB
testcase_25 AC 125 ms
54,052 KB
testcase_26 AC 123 ms
53,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String s1 = sc.next();
		int t = sc.nextInt();
		String[] x = {"I","II","III","IIII","V","VI","VII","VIII","IX","X","XI","XII"};
		int time = -101010101;
		for(int i = 0 ; i < x.length ; i++) {
			if(x[i].equals(s1)) {
				time = i + 1;
			}
		}
		if(time + t >= 0) {
			time = (time + t) % 12;
		} else if(time + t < 0) {
			time = 12 - Math.abs((time + t)) % 12;
		}
		if(time == 0) {
			System.out.println("XII");
		} else {
			System.out.println(x[time - 1]);
		}
	}
}
0