結果

問題 No.1475 時計の歯車Easy
ユーザー face4face4
提出日時 2021-04-10 23:33:47
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 343 ms / 2,000 ms
コード長 183 bytes
コンパイル時間 10,924 ms
コンパイル使用メモリ 431,296 KB
実行使用メモリ 60,644 KB
最終ジャッジ日時 2024-06-26 20:38:17
合計ジャッジ時間 27,777 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 336 ms
60,644 KB
testcase_01 AC 337 ms
60,460 KB
testcase_02 AC 321 ms
60,468 KB
testcase_03 AC 330 ms
60,412 KB
testcase_04 AC 336 ms
60,548 KB
testcase_05 AC 340 ms
60,584 KB
testcase_06 AC 333 ms
60,280 KB
testcase_07 AC 328 ms
60,388 KB
testcase_08 AC 334 ms
60,392 KB
testcase_09 AC 341 ms
60,364 KB
testcase_10 AC 335 ms
60,360 KB
testcase_11 AC 343 ms
60,420 KB
testcase_12 AC 340 ms
60,460 KB
testcase_13 AC 322 ms
60,256 KB
testcase_14 AC 331 ms
60,264 KB
testcase_15 AC 334 ms
60,552 KB
testcase_16 AC 336 ms
60,424 KB
testcase_17 AC 343 ms
60,644 KB
testcase_18 AC 321 ms
60,380 KB
testcase_19 AC 337 ms
60,260 KB
testcase_20 AC 321 ms
60,364 KB
testcase_21 AC 331 ms
60,404 KB
testcase_22 AC 323 ms
60,284 KB
testcase_23 AC 325 ms
60,368 KB
testcase_24 AC 316 ms
56,868 KB
testcase_25 AC 321 ms
60,440 KB
testcase_26 AC 330 ms
60,392 KB
testcase_27 AC 323 ms
60,244 KB
testcase_28 AC 340 ms
60,356 KB
testcase_29 AC 335 ms
60,532 KB
testcase_30 AC 331 ms
60,384 KB
testcase_31 AC 333 ms
60,428 KB
testcase_32 AC 337 ms
60,484 KB
testcase_33 AC 334 ms
60,440 KB
testcase_34 AC 333 ms
60,308 KB
testcase_35 AC 337 ms
60,556 KB
testcase_36 AC 328 ms
60,404 KB
testcase_37 AC 338 ms
60,628 KB
testcase_38 AC 323 ms
60,488 KB
testcase_39 AC 326 ms
60,440 KB
testcase_40 AC 331 ms
60,524 KB
testcase_41 AC 331 ms
60,392 KB
testcase_42 AC 331 ms
60,340 KB
testcase_43 AC 326 ms
60,400 KB
testcase_44 AC 333 ms
60,448 KB
testcase_45 AC 333 ms
60,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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