結果
| 問題 | No.2937 Sigma Plus Problem |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2024-10-18 21:21:33 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 365 bytes |
| 記録 | |
| コンパイル時間 | 980 ms |
| コンパイル使用メモリ | 210,140 KB |
| 実行使用メモリ | 9,200 KB |
| 最終ジャッジ日時 | 2026-07-05 23:52:56 |
| 合計ジャッジ時間 | 2,275 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 17 WA * 3 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
void solve() {
unsigned long long n;
cin >> n;
cout << n * (n + 1) / 2 << '\n';
}
int main() {
std::cin.tie(nullptr);
std::ios_base::sync_with_stdio(false);
int T = 1;
for (int t = 0; t < T; t++) {
solve();
}
return 0;
}