結果

問題 No.172 UFOを捕まえろ
ユーザー gigurururugigurururu
提出日時 2015-04-02 07:36:04
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 932 ms / 5,000 ms
コード長 186 bytes
コンパイル時間 11,396 ms
コンパイル使用メモリ 257,828 KB
実行使用メモリ 63,176 KB
最終ジャッジ日時 2024-06-29 01:39:39
合計ジャッジ時間 34,973 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 904 ms
61,252 KB
testcase_01 AC 908 ms
63,072 KB
testcase_02 AC 904 ms
62,716 KB
testcase_03 AC 906 ms
63,068 KB
testcase_04 AC 912 ms
62,968 KB
testcase_05 AC 912 ms
63,120 KB
testcase_06 AC 911 ms
62,956 KB
testcase_07 AC 908 ms
63,000 KB
testcase_08 AC 904 ms
62,908 KB
testcase_09 AC 890 ms
62,812 KB
testcase_10 AC 886 ms
63,084 KB
testcase_11 AC 896 ms
62,932 KB
testcase_12 AC 904 ms
63,012 KB
testcase_13 AC 901 ms
62,804 KB
testcase_14 AC 899 ms
63,176 KB
testcase_15 AC 909 ms
63,036 KB
testcase_16 AC 928 ms
62,716 KB
testcase_17 AC 919 ms
62,912 KB
testcase_18 AC 932 ms
62,688 KB
testcase_19 AC 905 ms
62,904 KB
testcase_20 AC 913 ms
63,012 KB
testcase_21 AC 902 ms
63,080 KB
testcase_22 AC 900 ms
62,972 KB
testcase_23 AC 897 ms
63,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn
import Math.{sqrt,abs}
object Main extends App {
  val a = StdIn.readLine.split(" ").map { x => abs(x.toInt) }
  println((a(0) + a(1) + a(2) * sqrt(2)).toInt + 1)
}
0