結果

問題 No.1389 Clumsy Calculation
ユーザー sasa8uyauya
提出日時 2025-02-09 04:39:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 84 bytes
コンパイル時間 500 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 107,656 KB
最終ジャッジ日時 2025-02-09 04:39:27
合計ジャッジ時間 4,107 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other AC * 1 WA * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

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