結果

問題 No.405 ローマ数字の腕時計
ユーザー koba-e964koba-e964
提出日時 2016-08-05 22:44:39
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 116 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 11,564 KB
実行使用メモリ 15,424 KB
最終ジャッジ日時 2023-08-25 18:16:30
合計ジャッジ時間 3,517 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 79 ms
15,108 KB
testcase_04 AC 76 ms
15,128 KB
testcase_05 AC 79 ms
15,292 KB
testcase_06 WA -
testcase_07 AC 78 ms
15,276 KB
testcase_08 AC 78 ms
15,304 KB
testcase_09 AC 78 ms
15,276 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 71 ms
15,088 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 74 ms
15,104 KB
testcase_17 AC 76 ms
15,232 KB
testcase_18 AC 73 ms
15,080 KB
testcase_19 AC 72 ms
15,104 KB
testcase_20 WA -
testcase_21 AC 69 ms
15,228 KB
testcase_22 WA -
testcase_23 AC 72 ms
15,268 KB
testcase_24 AC 72 ms
15,004 KB
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

s=['XII','I','II','III','IIII','V','VI','VII','VIII','IX','X','XI'];u,t=gets.split;puts s[s.find_index(u)+t.to_i%12]
0