結果

問題 No.1475 時計の歯車Easy
ユーザー バカらっくバカらっく
提出日時 2022-02-03 14:00:30
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 334 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 12,990 ms
コンパイル使用メモリ 429,472 KB
実行使用メモリ 55,708 KB
最終ジャッジ日時 2024-06-11 09:54:03
合計ジャッジ時間 26,320 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 334 ms
55,708 KB
testcase_01 AC 312 ms
55,304 KB
testcase_02 AC 289 ms
55,344 KB
testcase_03 AC 295 ms
55,568 KB
testcase_04 AC 299 ms
55,320 KB
testcase_05 AC 295 ms
55,352 KB
testcase_06 AC 311 ms
55,276 KB
testcase_07 AC 309 ms
55,128 KB
testcase_08 AC 325 ms
55,288 KB
testcase_09 AC 316 ms
55,420 KB
testcase_10 AC 311 ms
55,456 KB
testcase_11 AC 299 ms
55,396 KB
testcase_12 AC 305 ms
55,388 KB
testcase_13 AC 294 ms
55,324 KB
testcase_14 AC 318 ms
55,328 KB
testcase_15 AC 315 ms
55,348 KB
testcase_16 AC 315 ms
55,136 KB
testcase_17 AC 310 ms
55,468 KB
testcase_18 AC 304 ms
55,060 KB
testcase_19 AC 292 ms
55,356 KB
testcase_20 AC 294 ms
55,504 KB
testcase_21 AC 305 ms
55,492 KB
testcase_22 AC 297 ms
54,948 KB
testcase_23 AC 306 ms
55,288 KB
testcase_24 AC 280 ms
51,808 KB
testcase_25 AC 296 ms
55,228 KB
testcase_26 AC 300 ms
55,232 KB
testcase_27 AC 295 ms
55,352 KB
testcase_28 AC 319 ms
55,524 KB
testcase_29 AC 312 ms
55,460 KB
testcase_30 AC 312 ms
55,280 KB
testcase_31 AC 322 ms
55,252 KB
testcase_32 AC 316 ms
55,260 KB
testcase_33 AC 297 ms
55,176 KB
testcase_34 AC 306 ms
55,468 KB
testcase_35 AC 300 ms
55,216 KB
testcase_36 AC 296 ms
55,376 KB
testcase_37 AC 297 ms
55,024 KB
testcase_38 AC 292 ms
55,072 KB
testcase_39 AC 296 ms
55,212 KB
testcase_40 AC 307 ms
55,360 KB
testcase_41 AC 304 ms
55,288 KB
testcase_42 AC 310 ms
55,288 KB
testcase_43 AC 289 ms
55,164 KB
testcase_44 AC 296 ms
55,424 KB
testcase_45 AC 306 ms
55,076 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

import java.lang.StringBuilder

fun main(args: Array<String>) {
    val n = readLine()!!.toInt()
    val ans = StringBuilder()
    repeat(n) {
        ans.appendLine(readLine()!!.split(" ").map{it.toInt()}.drop(1).sortedDescending().joinToString(" "))
    }
    print(ans.toString())
}
0