結果

問題 No.1389 Clumsy Calculation
ユーザー yumechiyumechi
提出日時 2021-03-02 23:54:38
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,822 ms / 2,000 ms
コード長 198 bytes
コンパイル時間 12,016 ms
コンパイル使用メモリ 268,052 KB
実行使用メモリ 92,312 KB
最終ジャッジ日時 2024-10-03 02:15:34
合計ジャッジ時間 55,672 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 965 ms
63,492 KB
testcase_01 AC 960 ms
63,584 KB
testcase_02 AC 968 ms
63,400 KB
testcase_03 AC 1,149 ms
64,364 KB
testcase_04 AC 1,155 ms
64,104 KB
testcase_05 AC 1,152 ms
64,328 KB
testcase_06 AC 1,153 ms
64,196 KB
testcase_07 AC 1,134 ms
64,340 KB
testcase_08 AC 964 ms
63,332 KB
testcase_09 AC 1,822 ms
88,804 KB
testcase_10 AC 1,739 ms
85,288 KB
testcase_11 AC 1,158 ms
64,360 KB
testcase_12 AC 1,123 ms
63,976 KB
testcase_13 AC 1,108 ms
64,428 KB
testcase_14 AC 1,795 ms
91,768 KB
testcase_15 AC 1,809 ms
92,060 KB
testcase_16 AC 1,790 ms
90,652 KB
testcase_17 AC 1,778 ms
90,868 KB
testcase_18 AC 1,758 ms
91,368 KB
testcase_19 AC 1,775 ms
91,116 KB
testcase_20 AC 1,779 ms
91,148 KB
testcase_21 AC 1,796 ms
90,496 KB
testcase_22 AC 1,773 ms
91,400 KB
testcase_23 AC 1,758 ms
90,616 KB
testcase_24 AC 1,757 ms
90,668 KB
testcase_25 AC 1,764 ms
91,180 KB
testcase_26 AC 1,763 ms
90,520 KB
testcase_27 AC 1,770 ms
92,312 KB
testcase_28 AC 1,753 ms
89,684 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 = Seq.fill(n)(sc.nextInt).map(x - _).sum
  println(x - an)
}
0