結果

問題 No.405 ローマ数字の腕時計
ユーザー komkomhkomkomh
提出日時 2019-06-09 12:06:26
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 312 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 12,743 ms
コンパイル使用メモリ 438,916 KB
実行使用メモリ 51,312 KB
最終ジャッジ日時 2024-07-06 19:23:47
合計ジャッジ時間 23,076 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
50,992 KB
testcase_01 AC 304 ms
51,300 KB
testcase_02 AC 306 ms
51,128 KB
testcase_03 AC 310 ms
51,224 KB
testcase_04 AC 306 ms
51,312 KB
testcase_05 AC 305 ms
51,016 KB
testcase_06 AC 306 ms
50,908 KB
testcase_07 AC 302 ms
51,172 KB
testcase_08 AC 312 ms
51,100 KB
testcase_09 AC 302 ms
51,040 KB
testcase_10 AC 305 ms
50,916 KB
testcase_11 AC 307 ms
51,072 KB
testcase_12 AC 305 ms
51,032 KB
testcase_13 AC 305 ms
51,028 KB
testcase_14 AC 306 ms
51,292 KB
testcase_15 AC 308 ms
51,040 KB
testcase_16 AC 302 ms
51,128 KB
testcase_17 AC 303 ms
50,820 KB
testcase_18 AC 304 ms
51,188 KB
testcase_19 AC 300 ms
51,300 KB
testcase_20 AC 302 ms
51,132 KB
testcase_21 AC 304 ms
51,260 KB
testcase_22 AC 303 ms
51,032 KB
testcase_23 AC 307 ms
51,172 KB
testcase_24 AC 308 ms
51,020 KB
testcase_25 AC 303 ms
51,128 KB
testcase_26 AC 308 ms
51,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

fun main() {
    val S1 = readLine()!!.split(" ")
    val S = S1[0]
    val T = S1[1].toInt()

    val roma12 = arrayOf("I","II","III","IIII","V","VI","VII","VIII","IX","X","XI","XII")
    var index: Int = roma12.mapIndexed { index, s -> Pair(index, s) }.filter { it.second == S }[0].first
    index += (T % 12)
    when {
        index > 11 -> index -= 12
        index < 0 -> index += 12
    }
    println(roma12[index])
}
0