結果

問題 No.1389 Clumsy Calculation
ユーザー ks2mks2m
提出日時 2021-02-12 21:47:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 786 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 73,912 KB
実行使用メモリ 58,292 KB
最終ジャッジ日時 2024-07-19 20:58:50
合計ジャッジ時間 17,160 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
41,260 KB
testcase_01 AC 111 ms
41,104 KB
testcase_02 AC 117 ms
41,408 KB
testcase_03 AC 194 ms
44,288 KB
testcase_04 AC 186 ms
44,196 KB
testcase_05 AC 198 ms
45,288 KB
testcase_06 AC 191 ms
44,232 KB
testcase_07 AC 200 ms
44,268 KB
testcase_08 AC 102 ms
40,264 KB
testcase_09 AC 696 ms
58,292 KB
testcase_10 AC 564 ms
52,368 KB
testcase_11 AC 189 ms
43,812 KB
testcase_12 AC 189 ms
44,004 KB
testcase_13 AC 172 ms
43,280 KB
testcase_14 AC 638 ms
53,836 KB
testcase_15 AC 664 ms
53,964 KB
testcase_16 AC 643 ms
53,512 KB
testcase_17 AC 697 ms
54,616 KB
testcase_18 AC 674 ms
54,432 KB
testcase_19 AC 657 ms
56,688 KB
testcase_20 AC 661 ms
53,960 KB
testcase_21 AC 665 ms
53,640 KB
testcase_22 AC 661 ms
54,204 KB
testcase_23 AC 637 ms
54,572 KB
testcase_24 AC 687 ms
54,712 KB
testcase_25 AC 629 ms
54,644 KB
testcase_26 AC 643 ms
56,808 KB
testcase_27 AC 765 ms
54,364 KB
testcase_28 AC 786 ms
54,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long x = sc.nextInt();
		int[] s = new int[n];
		for (int i = 0; i < n; i++) {
			s[i] = sc.nextInt();
		}
		sc.close();

		long sum = 0;
		for (int i = 0; i < n; i++) {
			sum += s[i];
		}

		System.out.println(sum - x * (n - 1));
	}
}
0