結果
| 問題 | No.2937 Sigma Plus Problem | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2024-10-18 23:45:08 | 
| 言語 | C++23 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                TLE
                                 
                             | 
| 実行時間 | - | 
| コード長 | 172 bytes | 
| コンパイル時間 | 4,094 ms | 
| コンパイル使用メモリ | 273,856 KB | 
| 実行使用メモリ | 10,268 KB | 
| 最終ジャッジ日時 | 2024-10-18 23:45:14 | 
| 合計ジャッジ時間 | 6,038 ms | 
| ジャッジサーバーID (参考情報) | judge5 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 TLE * 1 | 
| other | -- * 20 | 
ソースコード
#include<bits/stdc++.h>
using namespace std;
#define int long long
signed main()
{
	int n; cin >> n;
	int ans = 0;
	for(int i=1;i<n+1;i++) ans += i;
	cout << ans << endl;
}
            
            
            
        