結果

問題 No.480 合計
ユーザー 平松裕哉平松裕哉
提出日時 2024-12-13 21:10:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 1,190 bytes
コンパイル時間 1,753 ms
コンパイル使用メモリ 166,180 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-13 21:10:54
合計ジャッジ時間 3,340 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
//#include <atcoder/all>
using namespace std;
//using namespace atcoder;
//using mint = modint998244353; //Mod
#define rep(i, n) for (int i = 0; i < (int)(n); i++) //forループ
#define reps(i, m, n) for (int i = (int)(m); i < (int)(n); i++) //forループ(開始位置指定)
#define rrep(i, n) for (int i = n-1; i >= 0; i--) //forループ逆順
#define rreps(i, n, m) for (int i = (int)(n-1); i >= (int)(m); i--) //forループ逆順(開始位置指定)
#define all(a) (a).begin(), (a).end() //all
#define rall(a) (a).rbegin(), (a).rend() //逆all

#define ll long long //long long型
#define ull unsigned long long //unsigned long long型

#define alphabet "abcdefghijklmnopqrstuvwxyz" //英小文字列
#define alphabet_A "ABCDEFGHIJKLMNOPQRSTUVWXYZ" //英大文字列
#define pi acos(-1) //円周率

#define move_X4 vector<int> {-1, 0, 1, 0} //4方向への移動
#define move_Y4 vector<int> {0, -1, 0, 1} //4方向への移動

#define move_X8 vector<int> {1, 1, 0, -1, -1, -1, 0, 1} //8方向への移動
#define move_Y8 vector<int> {0, 1, 1, 1, 0, -1, -1, -1} //8方向への移動

int main()
{
    int n;
    cin>>n;

    cout<<(n + 1) * n / 2<<endl;
}
0