結果
| 問題 | No.1389 Clumsy Calculation |
| コンテスト | |
| ユーザー |
🍮かんプリン
|
| 提出日時 | 2021-02-12 21:22:02 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 56 ms / 2,000 ms |
| コード長 | 362 bytes |
| 記録 | |
| コンパイル時間 | 931 ms |
| コンパイル使用メモリ | 181,384 KB |
| 実行使用メモリ | 187,820 KB |
| 最終ジャッジ日時 | 2026-04-02 18:13:48 |
| 合計ジャッジ時間 | 2,548 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge5_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 26 |
ソースコード
/**
* @FileName a.cpp
* @Author kanpurin
* @Created 2021.02.12 21:22:00
**/
#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
int main() {
ll n,x;cin >> n >> x;
ll total = 0;
for (int i = 0; i < n; i++) {
int s;cin >> s;
total += s;
}
total -= (n-1)*x;
cout << total << endl;
return 0;
}
🍮かんプリン