結果

問題 No.1849 Three Times Value
ユーザー 箱星箱星
提出日時 2022-02-25 01:06:20
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 420 ms / 2,000 ms
コード長 987 bytes
コンパイル時間 12,216 ms
コンパイル使用メモリ 434,336 KB
実行使用メモリ 67,896 KB
最終ジャッジ日時 2024-07-02 14:52:37
合計ジャッジ時間 23,433 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 307 ms
51,204 KB
testcase_01 AC 305 ms
51,092 KB
testcase_02 AC 319 ms
51,716 KB
testcase_03 AC 302 ms
51,084 KB
testcase_04 AC 311 ms
51,176 KB
testcase_05 AC 313 ms
51,408 KB
testcase_06 AC 419 ms
66,592 KB
testcase_07 AC 308 ms
51,328 KB
testcase_08 AC 302 ms
51,228 KB
testcase_09 AC 416 ms
67,896 KB
testcase_10 AC 420 ms
67,856 KB
testcase_11 AC 420 ms
67,764 KB
testcase_12 AC 418 ms
67,760 KB
testcase_13 AC 392 ms
53,820 KB
testcase_14 AC 342 ms
52,248 KB
testcase_15 AC 321 ms
51,692 KB
testcase_16 AC 418 ms
67,880 KB
testcase_17 AC 393 ms
53,816 KB
testcase_18 AC 303 ms
51,168 KB
testcase_19 AC 304 ms
51,308 KB
testcase_20 AC 308 ms
51,260 KB
testcase_21 AC 309 ms
51,200 KB
testcase_22 AC 312 ms
51,212 KB
testcase_23 AC 309 ms
51,364 KB
testcase_24 AC 316 ms
51,612 KB
testcase_25 AC 311 ms
51,348 KB
testcase_26 AC 330 ms
51,700 KB
testcase_27 AC 388 ms
54,052 KB
testcase_28 AC 308 ms
51,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val n = nextLong()
    var ans = 0
    for (i in 1..n) {
        val m = i.toString().repeat(3).toLong()
        if (m <= n) {
            ans++
        } else {
            break
        }
    }
    println(ans)
}

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", abs(1L.shl(26)))
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()
}

// 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