結果

問題 No.1389 Clumsy Calculation
ユーザー rlangevinrlangevin
提出日時 2024-06-26 08:53:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 74 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 94,904 KB
最終ジャッジ日時 2024-06-26 08:53:41
合計ジャッジ時間 4,449 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,148 KB
testcase_01 AC 39 ms
52,232 KB
testcase_02 AC 38 ms
51,808 KB
testcase_03 AC 42 ms
57,404 KB
testcase_04 AC 43 ms
59,452 KB
testcase_05 AC 42 ms
59,080 KB
testcase_06 AC 43 ms
57,960 KB
testcase_07 AC 43 ms
58,304 KB
testcase_08 AC 39 ms
52,816 KB
testcase_09 AC 83 ms
94,904 KB
testcase_10 AC 63 ms
81,740 KB
testcase_11 AC 42 ms
58,112 KB
testcase_12 AC 42 ms
58,092 KB
testcase_13 AC 43 ms
58,644 KB
testcase_14 AC 72 ms
87,996 KB
testcase_15 AC 73 ms
88,356 KB
testcase_16 AC 73 ms
88,632 KB
testcase_17 AC 74 ms
91,636 KB
testcase_18 AC 74 ms
90,588 KB
testcase_19 AC 74 ms
90,780 KB
testcase_20 AC 74 ms
90,968 KB
testcase_21 AC 75 ms
91,556 KB
testcase_22 AC 74 ms
92,240 KB
testcase_23 AC 74 ms
91,636 KB
testcase_24 AC 75 ms
92,208 KB
testcase_25 AC 74 ms
91,472 KB
testcase_26 AC 72 ms
87,784 KB
testcase_27 AC 72 ms
89,168 KB
testcase_28 AC 75 ms
91,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X=map(int,input().split())
print(sum(map(int, input().split()))-(N-1)*X)
0