結果

問題 No.405 ローマ数字の腕時計
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-13 16:29:39
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 540 bytes
コンパイル時間 2,468 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 41,540 KB
最終ジャッジ日時 2024-11-17 11:25:31
合計ジャッジ時間 6,382 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
41,024 KB
testcase_01 AC 106 ms
40,072 KB
testcase_02 AC 108 ms
39,924 KB
testcase_03 AC 108 ms
39,976 KB
testcase_04 AC 105 ms
39,520 KB
testcase_05 AC 122 ms
41,136 KB
testcase_06 RE -
testcase_07 AC 127 ms
41,160 KB
testcase_08 AC 115 ms
39,760 KB
testcase_09 RE -
testcase_10 AC 127 ms
41,176 KB
testcase_11 AC 129 ms
40,964 KB
testcase_12 RE -
testcase_13 AC 120 ms
41,344 KB
testcase_14 AC 118 ms
41,028 KB
testcase_15 AC 119 ms
41,452 KB
testcase_16 AC 118 ms
41,048 KB
testcase_17 RE -
testcase_18 AC 121 ms
41,104 KB
testcase_19 AC 122 ms
41,404 KB
testcase_20 AC 123 ms
41,160 KB
testcase_21 AC 122 ms
40,976 KB
testcase_22 AC 116 ms
40,952 KB
testcase_23 AC 124 ms
41,080 KB
testcase_24 AC 121 ms
41,212 KB
testcase_25 AC 123 ms
40,896 KB
testcase_26 AC 109 ms
40,144 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;
		}
		System.out.println(x[time - 1]);
	}
}
0