結果

問題 No.1389 Clumsy Calculation
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-05 09:32:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 846 ms / 2,000 ms
コード長 390 bytes
コンパイル時間 3,288 ms
コンパイル使用メモリ 74,836 KB
実行使用メモリ 68,556 KB
最終ジャッジ日時 2024-10-06 04:50:53
合計ジャッジ時間 19,949 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,832 KB
testcase_01 AC 133 ms
54,096 KB
testcase_02 AC 116 ms
53,040 KB
testcase_03 AC 213 ms
56,660 KB
testcase_04 AC 213 ms
56,456 KB
testcase_05 AC 220 ms
57,528 KB
testcase_06 AC 211 ms
56,792 KB
testcase_07 AC 206 ms
56,624 KB
testcase_08 AC 128 ms
54,140 KB
testcase_09 AC 846 ms
68,556 KB
testcase_10 AC 697 ms
63,324 KB
testcase_11 AC 189 ms
57,068 KB
testcase_12 AC 193 ms
56,416 KB
testcase_13 AC 194 ms
56,412 KB
testcase_14 AC 710 ms
65,336 KB
testcase_15 AC 718 ms
65,128 KB
testcase_16 AC 690 ms
65,216 KB
testcase_17 AC 737 ms
65,352 KB
testcase_18 AC 722 ms
65,504 KB
testcase_19 AC 733 ms
65,016 KB
testcase_20 AC 730 ms
64,708 KB
testcase_21 AC 705 ms
64,936 KB
testcase_22 AC 732 ms
65,160 KB
testcase_23 AC 698 ms
65,192 KB
testcase_24 AC 737 ms
65,004 KB
testcase_25 AC 699 ms
65,044 KB
testcase_26 AC 695 ms
65,056 KB
testcase_27 AC 707 ms
64,284 KB
testcase_28 AC 725 ms
65,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {

	    public static void main(String[] args) throws Exception {

	    	Scanner sc = new Scanner(System.in);
	    	int n = sc.nextInt();
	    	int x = sc.nextInt();
	    	int sum = 0;

	    	for (int i=0; i < n; i ++) {
	    		sum += sc.nextInt();
	    	}
	    	sc.close();

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

	    }
0