結果

問題 No.1849 Three Times Value
ユーザー yudedakoyudedako
提出日時 2022-03-01 11:35:58
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 904 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 12,373 ms
コンパイル使用メモリ 260,060 KB
実行使用メモリ 62,440 KB
最終ジャッジ日時 2024-07-07 15:50:42
合計ジャッジ時間 40,463 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 892 ms
62,132 KB
testcase_01 AC 887 ms
62,088 KB
testcase_02 AC 896 ms
62,376 KB
testcase_03 AC 898 ms
62,088 KB
testcase_04 AC 892 ms
62,020 KB
testcase_05 AC 889 ms
62,156 KB
testcase_06 AC 893 ms
62,188 KB
testcase_07 AC 900 ms
62,340 KB
testcase_08 AC 898 ms
62,340 KB
testcase_09 AC 899 ms
62,084 KB
testcase_10 AC 891 ms
62,124 KB
testcase_11 AC 887 ms
61,996 KB
testcase_12 AC 897 ms
62,132 KB
testcase_13 AC 900 ms
62,004 KB
testcase_14 AC 897 ms
62,280 KB
testcase_15 AC 894 ms
62,208 KB
testcase_16 AC 897 ms
62,068 KB
testcase_17 AC 892 ms
62,120 KB
testcase_18 AC 904 ms
62,440 KB
testcase_19 AC 890 ms
62,064 KB
testcase_20 AC 896 ms
62,048 KB
testcase_21 AC 896 ms
62,176 KB
testcase_22 AC 885 ms
62,260 KB
testcase_23 AC 884 ms
62,024 KB
testcase_24 AC 890 ms
62,356 KB
testcase_25 AC 888 ms
62,168 KB
testcase_26 AC 888 ms
62,188 KB
testcase_27 AC 895 ms
62,116 KB
testcase_28 AC 898 ms
62,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.collection.mutable.*
import scala.io.StdIn.*
import scala.util.chaining.*
import scala.math.*
import scala.reflect.ClassTag
import scala.util.*
import scala.annotation.tailrec
import scala.collection.mutable

extension (value: Int)
  def toTriple: Long = value.toString.pipe(s => (s + s + s).toLong)
@main def main =
  val n = readLine.toLong
  var min = 0
  var max = 100000
  while min < max do
    val mid = (min + max) >>> 1
    if mid.toTriple <= n then
      min = mid + 1
    else
      max = mid
  println(max - 1)
0