結果

問題 No.863 計算量
ユーザー バカらっくバカらっく
提出日時 2019-08-24 18:15:06
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 263 ms / 1,000 ms
コード長 354 bytes
コンパイル時間 10,424 ms
コンパイル使用メモリ 429,576 KB
実行使用メモリ 54,332 KB
最終ジャッジ日時 2024-11-20 19:26:14
合計ジャッジ時間 14,067 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 263 ms
54,260 KB
testcase_01 AC 255 ms
54,316 KB
testcase_02 AC 245 ms
54,296 KB
testcase_03 AC 253 ms
54,296 KB
testcase_04 AC 258 ms
54,184 KB
testcase_05 AC 261 ms
54,332 KB
testcase_06 AC 260 ms
54,272 KB
testcase_07 AC 258 ms
54,160 KB
testcase_08 AC 251 ms
54,124 KB
testcase_09 AC 251 ms
54,156 KB
testcase_10 AC 245 ms
54,196 KB
testcase_11 AC 250 ms
54,252 KB
testcase_12 AC 257 ms
54,260 KB
testcase_13 AC 251 ms
54,072 KB
testcase_14 AC 245 ms
54,272 KB
testcase_15 AC 253 ms
54,324 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used
fun main(args: Array<String>){
         ^

ソースコード

diff #

import kotlin.math.abs

fun main(args: Array<String>){
    val mul1 = 200000L / 5000
    val mul2 = (200000L * 200000L) / (5000L * 5000L)

    val num1 = readLine()!!.toLong()
    val num2 = readLine()!!.toLong()

    val diff1 = abs(num2 - (num1*mul1))
    val diff2 = abs(num2 - (num1*mul2))
    val ans = if(diff1 < diff2) 1 else 2
    println(ans)
}
0