結果

問題 No.83 最大マッチング
ユーザー バカらっくバカらっく
提出日時 2019-09-26 07:46:50
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 304 ms / 5,000 ms
コード長 334 bytes
コンパイル時間 11,905 ms
コンパイル使用メモリ 427,412 KB
実行使用メモリ 54,272 KB
最終ジャッジ日時 2024-09-23 07:36:14
合計ジャッジ時間 16,890 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
54,040 KB
testcase_01 AC 283 ms
54,056 KB
testcase_02 AC 284 ms
53,924 KB
testcase_03 AC 290 ms
54,108 KB
testcase_04 AC 283 ms
54,016 KB
testcase_05 AC 283 ms
54,092 KB
testcase_06 AC 296 ms
54,168 KB
testcase_07 AC 282 ms
54,024 KB
testcase_08 AC 287 ms
54,144 KB
testcase_09 AC 297 ms
54,272 KB
testcase_10 AC 304 ms
54,040 KB
testcase_11 AC 302 ms
54,096 KB
testcase_12 AC 303 ms
54,168 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>) {
    var n = readLine()!!.toInt()
    val ans = StringBuilder()
    if(n % 2 == 1) {
        ans.append(7)
        n -= 3
    } else {
        ans.append(1)
        n -= 2
    }

    for(i in (0 until  (n/2))) {
        ans.append(1)
    }
    println(ans.toString())

}

0