結果

問題 No.1389 Clumsy Calculation
ユーザー tentententen
提出日時 2021-02-14 19:24:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 880 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 2,317 ms
コンパイル使用メモリ 74,576 KB
実行使用メモリ 68,824 KB
最終ジャッジ日時 2024-07-22 06:09:52
合計ジャッジ時間 19,729 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,896 KB
testcase_01 AC 130 ms
53,968 KB
testcase_02 AC 130 ms
53,824 KB
testcase_03 AC 219 ms
56,664 KB
testcase_04 AC 217 ms
56,724 KB
testcase_05 AC 211 ms
57,672 KB
testcase_06 AC 217 ms
56,720 KB
testcase_07 AC 218 ms
56,512 KB
testcase_08 AC 132 ms
54,308 KB
testcase_09 AC 880 ms
68,824 KB
testcase_10 AC 687 ms
61,560 KB
testcase_11 AC 212 ms
56,656 KB
testcase_12 AC 209 ms
56,632 KB
testcase_13 AC 204 ms
56,380 KB
testcase_14 AC 745 ms
65,192 KB
testcase_15 AC 748 ms
65,168 KB
testcase_16 AC 736 ms
65,068 KB
testcase_17 AC 764 ms
65,220 KB
testcase_18 AC 774 ms
65,360 KB
testcase_19 AC 779 ms
64,920 KB
testcase_20 AC 770 ms
65,248 KB
testcase_21 AC 766 ms
65,044 KB
testcase_22 AC 769 ms
64,836 KB
testcase_23 AC 772 ms
64,844 KB
testcase_24 AC 737 ms
67,296 KB
testcase_25 AC 777 ms
65,964 KB
testcase_26 AC 746 ms
64,980 KB
testcase_27 AC 748 ms
65,228 KB
testcase_28 AC 759 ms
65,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        long x = sc.nextInt();
        long sum = 0;
        for (int i = 0; i < n; i++) {
            sum += sc.nextInt();
        }
        System.out.println(sum - (n - 1) * x);
    }
}
0