結果

問題 No.1389 Clumsy Calculation
ユーザー raven7959raven7959
提出日時 2021-08-13 15:49:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 91 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 107,268 KB
最終ジャッジ日時 2024-10-03 06:09:44
合計ジャッジ時間 3,789 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,204 KB
testcase_01 AC 31 ms
52,672 KB
testcase_02 AC 31 ms
52,956 KB
testcase_03 AC 35 ms
59,140 KB
testcase_04 AC 37 ms
59,816 KB
testcase_05 AC 38 ms
60,076 KB
testcase_06 AC 34 ms
59,400 KB
testcase_07 AC 34 ms
58,684 KB
testcase_08 AC 31 ms
52,392 KB
testcase_09 AC 89 ms
102,512 KB
testcase_10 AC 62 ms
96,056 KB
testcase_11 AC 39 ms
58,656 KB
testcase_12 AC 41 ms
58,400 KB
testcase_13 AC 38 ms
58,484 KB
testcase_14 AC 76 ms
103,592 KB
testcase_15 AC 75 ms
103,520 KB
testcase_16 AC 77 ms
104,180 KB
testcase_17 AC 79 ms
107,116 KB
testcase_18 AC 78 ms
107,160 KB
testcase_19 AC 78 ms
107,140 KB
testcase_20 AC 78 ms
107,268 KB
testcase_21 AC 78 ms
106,976 KB
testcase_22 AC 76 ms
107,116 KB
testcase_23 AC 81 ms
107,256 KB
testcase_24 AC 79 ms
107,056 KB
testcase_25 AC 80 ms
107,036 KB
testcase_26 AC 73 ms
103,200 KB
testcase_27 AC 77 ms
105,100 KB
testcase_28 AC 79 ms
107,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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