結果

問題 No.722 100×100=1000
ユーザー Pump0129Pump0129
提出日時 2018-08-23 05:44:13
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 622 bytes
コンパイル時間 13,891 ms
コンパイル使用メモリ 439,448 KB
実行使用メモリ 59,000 KB
最終ジャッジ日時 2024-10-12 11:01:43
合計ジャッジ時間 25,573 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 332 ms
56,884 KB
testcase_01 AC 313 ms
56,896 KB
testcase_02 AC 318 ms
56,880 KB
testcase_03 AC 312 ms
57,012 KB
testcase_04 AC 313 ms
56,936 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 310 ms
56,836 KB
testcase_08 AC 313 ms
56,880 KB
testcase_09 AC 314 ms
56,944 KB
testcase_10 AC 316 ms
56,792 KB
testcase_11 AC 316 ms
56,804 KB
testcase_12 AC 314 ms
56,876 KB
testcase_13 AC 329 ms
56,920 KB
testcase_14 AC 311 ms
56,956 KB
testcase_15 AC 327 ms
56,848 KB
testcase_16 AC 307 ms
56,808 KB
testcase_17 AC 316 ms
56,988 KB
testcase_18 AC 311 ms
56,848 KB
testcase_19 AC 313 ms
57,044 KB
testcase_20 AC 316 ms
56,900 KB
testcase_21 WA -
testcase_22 AC 311 ms
56,800 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 306 ms
56,960 KB
testcase_26 AC 311 ms
56,952 KB
testcase_27 AC 313 ms
56,972 KB
testcase_28 AC 311 ms
56,836 KB
testcase_29 AC 312 ms
56,900 KB
testcase_30 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:8:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

package net.ipipip0129.kotlin.yukicoder

import kotlin.math.abs
import kotlin.math.pow

fun checkNum(x: Int): Boolean = abs(x) % 10.0.pow(abs(x).toString().length - 1).toInt() == 0

fun main(args: Array<String>) {
    val numList = readLine()!!.split(" ").map { it.toInt() }
    if (checkNum(numList[0]) && checkNum(numList[1])) {
        print(((numList[0].toLong() * numList[1].toLong()) / 10))
    } else {
        val ans = numList[0].toLong() * numList[1].toLong()
        if (-99999999 <= ans && ans <= 99999999) {
            print(ans)
        } else {
            println("E")
        }
    }
}
0