結果

問題 No.2937 Sigma Plus Problem
ユーザー karinohitokarinohito
提出日時 2024-10-18 23:58:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 311 bytes
コンパイル時間 2,385 ms
コンパイル使用メモリ 202,912 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-18 23:58:33
合計ジャッジ時間 7,566 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    unsigned long long N,an=0;
    cin>>N;
    for(long long i=1;i<=N;i++)an+=i;
    cout<<an<<endl;
}
0