結果

問題 No.1389 Clumsy Calculation
ユーザー yumechiyumechi
提出日時 2021-03-02 23:53:04
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,576 ms / 2,000 ms
コード長 205 bytes
コンパイル時間 9,101 ms
コンパイル使用メモリ 266,248 KB
実行使用メモリ 78,732 KB
最終ジャッジ日時 2024-10-03 02:13:52
合計ジャッジ時間 49,405 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 908 ms
65,812 KB
testcase_01 AC 929 ms
65,836 KB
testcase_02 AC 920 ms
65,812 KB
testcase_03 AC 1,103 ms
66,192 KB
testcase_04 AC 1,079 ms
66,284 KB
testcase_05 AC 1,098 ms
66,028 KB
testcase_06 AC 1,102 ms
66,208 KB
testcase_07 AC 1,143 ms
66,092 KB
testcase_08 AC 919 ms
65,648 KB
testcase_09 AC 1,576 ms
77,480 KB
testcase_10 AC 1,516 ms
78,732 KB
testcase_11 AC 1,102 ms
66,284 KB
testcase_12 AC 1,138 ms
66,108 KB
testcase_13 AC 1,111 ms
66,100 KB
testcase_14 AC 1,566 ms
76,512 KB
testcase_15 AC 1,548 ms
78,380 KB
testcase_16 AC 1,562 ms
78,496 KB
testcase_17 AC 1,536 ms
74,868 KB
testcase_18 AC 1,549 ms
74,792 KB
testcase_19 AC 1,532 ms
76,404 KB
testcase_20 AC 1,564 ms
74,972 KB
testcase_21 AC 1,563 ms
75,136 KB
testcase_22 AC 1,559 ms
75,320 KB
testcase_23 AC 1,550 ms
76,520 KB
testcase_24 AC 1,534 ms
75,244 KB
testcase_25 AC 1,527 ms
74,844 KB
testcase_26 AC 1,545 ms
78,244 KB
testcase_27 AC 1,550 ms
78,184 KB
testcase_28 AC 1,558 ms
75,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)

  val n = sc.nextInt
  val x = sc.nextInt
  val an = Array.fill(n)(sc.nextInt)
  println(x - an.map(a => x - a).sum)
}
0