結果

問題 No.1389 Clumsy Calculation
ユーザー とりゐとりゐ
提出日時 2022-05-28 16:22:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 79 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 107,516 KB
最終ジャッジ日時 2024-09-20 22:31:46
合計ジャッジ時間 4,469 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,060 KB
testcase_01 AC 34 ms
53,452 KB
testcase_02 AC 35 ms
52,832 KB
testcase_03 AC 38 ms
59,896 KB
testcase_04 AC 38 ms
59,448 KB
testcase_05 AC 40 ms
60,604 KB
testcase_06 AC 40 ms
58,464 KB
testcase_07 AC 39 ms
58,764 KB
testcase_08 AC 35 ms
52,328 KB
testcase_09 AC 89 ms
102,528 KB
testcase_10 AC 71 ms
96,636 KB
testcase_11 AC 40 ms
59,276 KB
testcase_12 AC 39 ms
58,960 KB
testcase_13 AC 38 ms
59,864 KB
testcase_14 AC 79 ms
103,916 KB
testcase_15 AC 80 ms
104,544 KB
testcase_16 AC 77 ms
103,920 KB
testcase_17 AC 81 ms
107,344 KB
testcase_18 AC 82 ms
107,144 KB
testcase_19 AC 83 ms
107,176 KB
testcase_20 AC 85 ms
107,304 KB
testcase_21 AC 85 ms
107,152 KB
testcase_22 AC 81 ms
106,932 KB
testcase_23 AC 82 ms
107,376 KB
testcase_24 AC 81 ms
107,104 KB
testcase_25 AC 83 ms
107,516 KB
testcase_26 AC 77 ms
102,908 KB
testcase_27 AC 78 ms
103,664 KB
testcase_28 AC 82 ms
106,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,x=map(int,input().split())
print(sum(list(map(int,input().split())))-x*(n-1))
0