結果

問題 No.405 ローマ数字の腕時計
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-10 22:04:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 480 bytes
コンパイル時間 1,856 ms
コンパイル使用メモリ 74,604 KB
実行使用メモリ 41,644 KB
最終ジャッジ日時 2024-07-06 19:16:10
合計ジャッジ時間 5,858 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
41,556 KB
testcase_01 AC 111 ms
41,336 KB
testcase_02 AC 117 ms
41,536 KB
testcase_03 AC 121 ms
41,460 KB
testcase_04 AC 106 ms
41,292 KB
testcase_05 AC 105 ms
40,496 KB
testcase_06 AC 122 ms
41,480 KB
testcase_07 AC 119 ms
41,576 KB
testcase_08 AC 108 ms
41,480 KB
testcase_09 AC 117 ms
41,644 KB
testcase_10 AC 116 ms
41,460 KB
testcase_11 AC 119 ms
41,644 KB
testcase_12 AC 121 ms
41,332 KB
testcase_13 AC 121 ms
41,608 KB
testcase_14 AC 128 ms
41,424 KB
testcase_15 AC 104 ms
41,476 KB
testcase_16 AC 118 ms
41,468 KB
testcase_17 AC 119 ms
41,312 KB
testcase_18 AC 109 ms
41,428 KB
testcase_19 AC 120 ms
41,280 KB
testcase_20 AC 124 ms
41,552 KB
testcase_21 AC 119 ms
41,636 KB
testcase_22 AC 115 ms
41,552 KB
testcase_23 AC 107 ms
41,452 KB
testcase_24 AC 105 ms
41,452 KB
testcase_25 AC 123 ms
41,584 KB
testcase_26 AC 130 ms
41,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		String[] ar = {"XII","I","II","III","IIII","V","VI","VII","VIII","IX","X","XI"};
		
		String s = sc.next();
		int n = sc.nextInt();
		int h = 0;
		for (int i=0; i<ar.length; i++) {
			if (s.equals(ar[i])) {h = i; break;}
		}
		
		//hからn時間後
		int ans = (h+n)%12;
		if (ans < 0) {
			ans = ans%12 + 12;
		}
		System.out.println(ar[ans]);
	}
}
0