結果

問題 No.83 最大マッチング
ユーザー 箱星箱星
提出日時 2021-01-01 22:23:44
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 298 ms / 5,000 ms
コード長 681 bytes
コンパイル時間 12,545 ms
コンパイル使用メモリ 424,880 KB
実行使用メモリ 51,236 KB
最終ジャッジ日時 2024-10-11 12:17:24
合計ジャッジ時間 17,715 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 288 ms
50,816 KB
testcase_01 AC 294 ms
50,852 KB
testcase_02 AC 287 ms
50,960 KB
testcase_03 AC 295 ms
50,836 KB
testcase_04 AC 290 ms
50,944 KB
testcase_05 AC 287 ms
50,784 KB
testcase_06 AC 294 ms
50,788 KB
testcase_07 AC 298 ms
50,832 KB
testcase_08 AC 290 ms
50,792 KB
testcase_09 AC 289 ms
50,880 KB
testcase_10 AC 297 ms
51,156 KB
testcase_11 AC 291 ms
51,236 KB
testcase_12 AC 292 ms
51,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    val s = "1".repeat((n - 2) / 2)
    val p = if (n % 2 == 0) "1" else "7"
    println(p + s)
}

fun main() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0