結果

問題 No.405 ローマ数字の腕時計
ユーザー YukimotoPGYukimotoPG
提出日時 2019-02-13 18:09:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 2,028 ms
コンパイル使用メモリ 74,492 KB
実行使用メモリ 41,704 KB
最終ジャッジ日時 2024-07-06 19:21:36
合計ジャッジ時間 6,177 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,328 KB
testcase_01 AC 122 ms
41,376 KB
testcase_02 AC 115 ms
40,032 KB
testcase_03 AC 115 ms
40,224 KB
testcase_04 AC 126 ms
41,704 KB
testcase_05 AC 125 ms
41,212 KB
testcase_06 AC 117 ms
41,512 KB
testcase_07 AC 121 ms
41,336 KB
testcase_08 AC 125 ms
41,380 KB
testcase_09 AC 119 ms
40,492 KB
testcase_10 AC 123 ms
41,384 KB
testcase_11 AC 123 ms
41,180 KB
testcase_12 AC 124 ms
41,644 KB
testcase_13 AC 110 ms
41,408 KB
testcase_14 AC 124 ms
41,388 KB
testcase_15 AC 126 ms
41,556 KB
testcase_16 AC 125 ms
41,504 KB
testcase_17 AC 116 ms
40,352 KB
testcase_18 AC 123 ms
41,524 KB
testcase_19 AC 126 ms
41,384 KB
testcase_20 AC 127 ms
41,480 KB
testcase_21 AC 131 ms
41,564 KB
testcase_22 AC 129 ms
41,492 KB
testcase_23 AC 122 ms
41,272 KB
testcase_24 AC 125 ms
41,380 KB
testcase_25 AC 124 ms
41,288 KB
testcase_26 AC 128 ms
41,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		
		String[] roma = {"I","II","III","IIII","V","VI","VII","VIII","IX","X","XI","XII"};
		String s = sc.next(); int n = sc.nextInt();
		for (int i=0; i<12; i++) {
			if (s.equals(roma[i])) {
				System.out.println(roma[(i+n+1200)%12]);
				return;
			}
		}
		
		
	}
}
0