結果

問題 No.2937 Sigma Plus Problem
ユーザー amesyuamesyu
提出日時 2024-10-24 10:53:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 259 bytes
コンパイル時間 2,255 ms
コンパイル使用メモリ 203,456 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-24 10:54:01
合計ジャッジ時間 7,738 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 TLE -
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 194 ms
6,820 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 91 ms
6,816 KB
testcase_12 TLE -
testcase_13 WA -
testcase_14 AC 247 ms
6,816 KB
testcase_15 TLE -
testcase_16 AC 226 ms
6,820 KB
testcase_17 WA -
testcase_18 AC 138 ms
6,816 KB
testcase_19 AC 279 ms
6,820 KB
testcase_20 WA -
testcase_21 TLE -
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
using namespace std;

int main() {

	int n;
	cin >> n;
	
	unsigned long long ans = 0;
	for(int i=0;i<=n;++i) ans += i;
	cout << ans << endl;
}
0