結果

問題 No.1475 時計の歯車Easy
ユーザー face4face4
提出日時 2021-04-10 23:33:47
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 343 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 11,319 ms
コンパイル使用メモリ 413,868 KB
実行使用メモリ 57,332 KB
最終ジャッジ日時 2023-09-09 03:28:08
合計ジャッジ時間 28,839 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 334 ms
57,328 KB
testcase_01 AC 343 ms
56,988 KB
testcase_02 AC 314 ms
56,920 KB
testcase_03 AC 320 ms
57,244 KB
testcase_04 AC 327 ms
56,996 KB
testcase_05 AC 324 ms
56,868 KB
testcase_06 AC 322 ms
56,872 KB
testcase_07 AC 322 ms
57,008 KB
testcase_08 AC 327 ms
57,036 KB
testcase_09 AC 325 ms
57,116 KB
testcase_10 AC 328 ms
57,012 KB
testcase_11 AC 325 ms
57,096 KB
testcase_12 AC 325 ms
56,984 KB
testcase_13 AC 317 ms
56,952 KB
testcase_14 AC 318 ms
56,872 KB
testcase_15 AC 330 ms
56,984 KB
testcase_16 AC 323 ms
56,872 KB
testcase_17 AC 324 ms
57,216 KB
testcase_18 AC 316 ms
56,816 KB
testcase_19 AC 320 ms
57,020 KB
testcase_20 AC 318 ms
56,852 KB
testcase_21 AC 323 ms
57,016 KB
testcase_22 AC 314 ms
56,844 KB
testcase_23 AC 310 ms
56,920 KB
testcase_24 AC 301 ms
52,980 KB
testcase_25 AC 316 ms
56,964 KB
testcase_26 AC 324 ms
57,332 KB
testcase_27 AC 314 ms
57,300 KB
testcase_28 AC 321 ms
56,992 KB
testcase_29 AC 319 ms
57,076 KB
testcase_30 AC 321 ms
57,036 KB
testcase_31 AC 317 ms
56,960 KB
testcase_32 AC 323 ms
57,020 KB
testcase_33 AC 325 ms
56,976 KB
testcase_34 AC 331 ms
57,004 KB
testcase_35 AC 317 ms
56,896 KB
testcase_36 AC 329 ms
56,916 KB
testcase_37 AC 322 ms
56,956 KB
testcase_38 AC 312 ms
56,856 KB
testcase_39 AC 325 ms
56,944 KB
testcase_40 AC 317 ms
56,932 KB
testcase_41 AC 323 ms
57,016 KB
testcase_42 AC 328 ms
56,932 KB
testcase_43 AC 323 ms
56,960 KB
testcase_44 AC 331 ms
57,332 KB
testcase_45 AC 324 ms
57,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val n = readLine()!!.toInt()
    repeat(n){
        println(readLine()!!.split(" ").drop(1).map{it.toInt()}.sorted().reversed().joinToString(separator = " "))
    }
}
0