結果

問題 No.796 well known
ユーザー 💕💖💞💕💖💞
提出日時 2019-05-06 14:07:59
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 422 ms / 2,000 ms
コード長 220 bytes
コンパイル時間 10,753 ms
コンパイル使用メモリ 432,924 KB
実行使用メモリ 63,428 KB
最終ジャッジ日時 2024-11-20 18:16:09
合計ジャッジ時間 18,752 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 321 ms
56,868 KB
testcase_01 AC 319 ms
56,980 KB
testcase_02 AC 314 ms
56,884 KB
testcase_03 AC 314 ms
56,944 KB
testcase_04 AC 413 ms
63,236 KB
testcase_05 AC 422 ms
63,260 KB
testcase_06 AC 414 ms
63,356 KB
testcase_07 AC 366 ms
59,248 KB
testcase_08 AC 418 ms
63,428 KB
testcase_09 AC 415 ms
61,256 KB
testcase_10 AC 417 ms
63,420 KB
testcase_11 AC 365 ms
57,192 KB
testcase_12 AC 380 ms
59,340 KB
testcase_13 AC 419 ms
63,420 KB
testcase_14 AC 375 ms
59,312 KB
testcase_15 AC 381 ms
61,296 KB
testcase_16 AC 415 ms
63,236 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>){
         ^

ソースコード

diff #

fun main(args:Array<String>){
    val N = readLine()!!.toInt()
    (1..N).map {
        when {
            it != N -> 3
            else -> 1
        }
    }.map { it.toString() }.joinToString(" ").let { println(it) }
}
0