結果

問題 No.83 最大マッチング
ユーザー javyjavy
提出日時 2015-12-01 10:10:57
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 568 ms / 5,000 ms
コード長 1,266 bytes
コンパイル時間 12,445 ms
コンパイル使用メモリ 431,344 KB
実行使用メモリ 59,424 KB
最終ジャッジ日時 2024-11-20 06:21:02
合計ジャッジ時間 18,365 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 296 ms
49,624 KB
testcase_01 AC 316 ms
49,624 KB
testcase_02 AC 290 ms
49,632 KB
testcase_03 AC 293 ms
49,644 KB
testcase_04 AC 289 ms
49,568 KB
testcase_05 AC 292 ms
49,804 KB
testcase_06 AC 299 ms
49,536 KB
testcase_07 AC 294 ms
49,632 KB
testcase_08 AC 296 ms
49,640 KB
testcase_09 AC 437 ms
57,128 KB
testcase_10 AC 536 ms
58,540 KB
testcase_11 AC 568 ms
59,296 KB
testcase_12 AC 559 ms
59,424 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package Yukicoder

fun main(args: Array<String>) {
    fun readLineLongArray(): List<Long> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toLong() }
        return ret
    }

    fun readLineLong(): Long {
        val str = readLine() as String
        return str.toLong()
    }

    fun readLineInt(): Int {
        val str = readLine() as String
        return str.toInt()
    }

    fun readLineIntArray() : List<Int> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toInt() }
        return ret
    }

    fun readLineDoubleArray(): List<Double> {
        val str = readLine() as String
        val arrStr = str.split(" ")
        val ret = arrStr.map { it.toDouble() }
        return ret
    }

    fun readLineDouble() : Double {
        val str = readLine() as String
        return str.toDouble()
    }


//    fun readLineStringArray(): List<String> {
//        val str = readLine() as String
//        val arrStr = str.split(" ")
//        return arrStr
//    }

    var num = readLineInt()
    if (num % 2 == 1) {
        print(7)
        num -= 3
    }
    for (i in num downTo 2 step 2) {
        print(1)
    }
    println()
}
0