結果

問題 No.722 100×100=1000
ユーザー Pump0129Pump0129
提出日時 2018-08-23 05:46:53
言語 Kotlin
(1.9.23)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 637 bytes
コンパイル時間 13,639 ms
コンパイル使用メモリ 436,928 KB
実行使用メモリ 56,992 KB
最終ジャッジ日時 2024-10-12 11:00:38
合計ジャッジ時間 24,005 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 312 ms
56,832 KB
testcase_01 AC 309 ms
56,944 KB
testcase_02 AC 307 ms
56,804 KB
testcase_03 AC 321 ms
56,804 KB
testcase_04 AC 307 ms
56,872 KB
testcase_05 AC 313 ms
56,908 KB
testcase_06 AC 313 ms
56,884 KB
testcase_07 AC 309 ms
56,840 KB
testcase_08 AC 306 ms
56,972 KB
testcase_09 AC 312 ms
56,912 KB
testcase_10 AC 314 ms
56,992 KB
testcase_11 AC 313 ms
56,868 KB
testcase_12 AC 313 ms
56,956 KB
testcase_13 AC 313 ms
56,980 KB
testcase_14 AC 317 ms
56,828 KB
testcase_15 AC 310 ms
56,944 KB
testcase_16 AC 311 ms
56,788 KB
testcase_17 AC 309 ms
56,896 KB
testcase_18 AC 311 ms
56,816 KB
testcase_19 AC 306 ms
56,808 KB
testcase_20 AC 308 ms
56,888 KB
testcase_21 AC 307 ms
56,896 KB
testcase_22 AC 305 ms
56,936 KB
testcase_23 AC 304 ms
56,804 KB
testcase_24 AC 302 ms
56,808 KB
testcase_25 AC 306 ms
56,804 KB
testcase_26 AC 304 ms
56,876 KB
testcase_27 AC 300 ms
56,832 KB
testcase_28 AC 305 ms
56,876 KB
testcase_29 AC 309 ms
56,992 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 = 10 < abs(x) && 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