結果

問題 No.722 100×100=1000
ユーザー 💕💖💞💕💖💞
提出日時 2018-08-04 11:50:17
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 300 bytes
コンパイル時間 12,392 ms
コンパイル使用メモリ 440,984 KB
実行使用メモリ 57,140 KB
最終ジャッジ日時 2024-10-12 10:50:24
合計ジャッジ時間 23,603 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 304 ms
56,928 KB
testcase_01 AC 302 ms
56,852 KB
testcase_02 AC 303 ms
56,996 KB
testcase_03 WA -
testcase_04 AC 300 ms
56,980 KB
testcase_05 AC 305 ms
56,944 KB
testcase_06 AC 309 ms
56,944 KB
testcase_07 AC 308 ms
56,948 KB
testcase_08 AC 305 ms
56,872 KB
testcase_09 AC 301 ms
57,008 KB
testcase_10 AC 306 ms
56,980 KB
testcase_11 AC 305 ms
56,876 KB
testcase_12 AC 304 ms
56,924 KB
testcase_13 AC 309 ms
56,888 KB
testcase_14 AC 303 ms
56,836 KB
testcase_15 AC 302 ms
56,960 KB
testcase_16 AC 306 ms
57,116 KB
testcase_17 AC 302 ms
56,960 KB
testcase_18 AC 305 ms
56,924 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 306 ms
57,044 KB
testcase_22 AC 304 ms
56,952 KB
testcase_23 AC 302 ms
57,140 KB
testcase_24 AC 303 ms
56,876 KB
testcase_25 AC 308 ms
57,136 KB
testcase_26 AC 310 ms
57,000 KB
testcase_27 WA -
testcase_28 AC 309 ms
57,000 KB
testcase_29 AC 303 ms
56,868 KB
testcase_30 AC 308 ms
56,964 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args:Array<String>) {
         ^

ソースコード

diff #

fun main(args:Array<String>) {
  val (a,b) = readLine()!!.split(" ").map(String::toLong)

  when {
    (a%100L == 0L && b%100L == 0L && a > 0 && b > 0) -> (a/10L)*b
    else -> {
      val r = a*b
      if( -99999999 <= r && r <= 99999999 )
        r
      else
        "E"
    }
  }.run(::println)
}
0