結果

問題 No.405 ローマ数字の腕時計
ユーザー RinRin
提出日時 2016-09-09 10:09:52
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 453 bytes
コンパイル時間 3,140 ms
コンパイル使用メモリ 74,992 KB
実行使用メモリ 41,468 KB
最終ジャッジ日時 2024-06-06 12:32:51
合計ジャッジ時間 7,129 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
39,940 KB
testcase_01 AC 117 ms
40,908 KB
testcase_02 AC 105 ms
39,872 KB
testcase_03 AC 102 ms
40,120 KB
testcase_04 AC 107 ms
40,380 KB
testcase_05 AC 124 ms
41,144 KB
testcase_06 AC 117 ms
41,420 KB
testcase_07 AC 117 ms
41,232 KB
testcase_08 AC 120 ms
40,864 KB
testcase_09 AC 108 ms
40,068 KB
testcase_10 AC 116 ms
41,036 KB
testcase_11 RE -
testcase_12 AC 118 ms
41,160 KB
testcase_13 AC 137 ms
41,000 KB
testcase_14 AC 116 ms
40,732 KB
testcase_15 AC 106 ms
39,848 KB
testcase_16 AC 104 ms
39,916 KB
testcase_17 AC 119 ms
41,320 KB
testcase_18 AC 115 ms
41,468 KB
testcase_19 AC 103 ms
39,892 KB
testcase_20 RE -
testcase_21 AC 115 ms
41,192 KB
testcase_22 RE -
testcase_23 AC 119 ms
41,092 KB
testcase_24 RE -
testcase_25 AC 117 ms
41,128 KB
testcase_26 AC 117 ms
41,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class b {
	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);
		String foo[] = {"I","II","III","IIII","V","VI","VII","VIII","IX","X","XI","XII"};
		String s = sc.next();
		int t = sc.nextInt();
		int i = 0;
		while(true){
			if(foo[i].equals(s))
				break;
			i++;
		}
		if(t >= 0)
			System.out.println(foo[(i + t) % 12]);
		else
			System.out.println(foo[(12 + ((i + t) % 12) % 12)]);
	}
}
0