結果

問題 No.405 ローマ数字の腕時計
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-13 16:51:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 1,900 ms
コンパイル使用メモリ 74,448 KB
実行使用メモリ 54,236 KB
最終ジャッジ日時 2024-07-06 19:14:04
合計ジャッジ時間 5,497 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
54,016 KB
testcase_01 AC 100 ms
52,944 KB
testcase_02 AC 113 ms
54,160 KB
testcase_03 AC 114 ms
54,236 KB
testcase_04 AC 103 ms
53,060 KB
testcase_05 AC 108 ms
52,972 KB
testcase_06 AC 100 ms
52,952 KB
testcase_07 AC 99 ms
52,776 KB
testcase_08 AC 114 ms
54,048 KB
testcase_09 AC 111 ms
54,104 KB
testcase_10 AC 115 ms
54,032 KB
testcase_11 AC 112 ms
53,980 KB
testcase_12 AC 115 ms
54,164 KB
testcase_13 AC 101 ms
52,992 KB
testcase_14 AC 102 ms
53,004 KB
testcase_15 AC 111 ms
53,884 KB
testcase_16 AC 115 ms
53,916 KB
testcase_17 AC 102 ms
52,716 KB
testcase_18 AC 114 ms
54,116 KB
testcase_19 AC 113 ms
53,980 KB
testcase_20 AC 109 ms
54,140 KB
testcase_21 AC 101 ms
53,004 KB
testcase_22 AC 113 ms
52,972 KB
testcase_23 AC 113 ms
54,112 KB
testcase_24 AC 108 ms
53,032 KB
testcase_25 AC 116 ms
54,160 KB
testcase_26 AC 112 ms
53,872 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;
			}
		}
		time = (time + 1200 + t) % 12;
		System.out.println(x[time]);
	}
}
0