結果

問題 No.441 和か積
ユーザー HujiLeeHujiLee
提出日時 2016-12-26 14:01:14
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 853 ms / 1,000 ms
コード長 387 bytes
コンパイル時間 9,881 ms
コンパイル使用メモリ 266,472 KB
実行使用メモリ 63,448 KB
最終ジャッジ日時 2024-06-29 22:00:48
合計ジャッジ時間 38,648 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 785 ms
63,256 KB
testcase_01 AC 798 ms
63,100 KB
testcase_02 AC 774 ms
63,448 KB
testcase_03 AC 777 ms
63,252 KB
testcase_04 AC 820 ms
63,284 KB
testcase_05 AC 791 ms
63,368 KB
testcase_06 AC 781 ms
63,348 KB
testcase_07 AC 806 ms
63,244 KB
testcase_08 AC 812 ms
63,308 KB
testcase_09 AC 819 ms
63,424 KB
testcase_10 AC 787 ms
63,104 KB
testcase_11 AC 815 ms
63,308 KB
testcase_12 AC 825 ms
63,288 KB
testcase_13 AC 808 ms
63,408 KB
testcase_14 AC 808 ms
63,136 KB
testcase_15 AC 801 ms
63,372 KB
testcase_16 AC 842 ms
63,300 KB
testcase_17 AC 848 ms
63,080 KB
testcase_18 AC 836 ms
63,288 KB
testcase_19 AC 808 ms
63,376 KB
testcase_20 AC 807 ms
63,224 KB
testcase_21 AC 831 ms
63,264 KB
testcase_22 AC 853 ms
63,356 KB
testcase_23 AC 821 ms
63,412 KB
testcase_24 AC 843 ms
63,360 KB
testcase_25 AC 844 ms
63,328 KB
testcase_26 AC 818 ms
63,412 KB
testcase_27 AC 808 ms
63,236 KB
testcase_28 AC 816 ms
63,148 KB
testcase_29 AC 845 ms
63,272 KB
testcase_30 AC 781 ms
63,132 KB
testcase_31 AC 805 ms
63,276 KB
testcase_32 AC 818 ms
63,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn

/**
  * Created by Administrator on 2016/12/26 0026.
  */
object Main  extends App{
  val bigInts: Array[BigInt] = StdIn.readLine().split(" ").map(x=>BigInt.apply(x))
  val sum = bigInts.reduce((x,y)=>x+y)
  val mul = bigInts.reduce((x,y)=>x*y)
  val cha = sum-mul
  if(cha>0){
    println("S")
  }else if(cha<0){
    println("P")
  }else{
    println("E")
  }


}
0