結果

問題 No.646 逆ピラミッド
ユーザー 💕💖💞💕💖💞
提出日時 2018-02-15 21:11:22
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 324 ms / 2,000 ms
コード長 185 bytes
コンパイル時間 11,205 ms
コンパイル使用メモリ 432,116 KB
実行使用メモリ 57,252 KB
最終ジャッジ日時 2024-11-20 13:39:41
合計ジャッジ時間 14,525 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 306 ms
56,948 KB
testcase_01 AC 318 ms
57,048 KB
testcase_02 AC 287 ms
56,992 KB
testcase_03 AC 305 ms
56,988 KB
testcase_04 AC 298 ms
57,252 KB
testcase_05 AC 315 ms
56,908 KB
testcase_06 AC 324 ms
57,056 KB
testcase_07 AC 297 ms
56,952 KB
testcase_08 AC 289 ms
56,948 KB
testcase_09 AC 296 ms
57,076 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:5:19: warning: parameter 'a' is never used, could be renamed to _
    (1..it).map { a -> n.toString() }.joinToString("")
                  ^

ソースコード

diff #

fun main(args: Array<String>) {
  val n = readLine()!!.toInt()

  (n downTo 1).map { 
    (1..it).map { a -> n.toString() }.joinToString("")
  }.joinToString("\n").let { println(it) }
}
0