結果
問題 | No.480 合計 |
ユーザー | nejineji |
提出日時 | 2019-10-25 19:37:52 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 448 bytes |
コンパイル時間 | 1,579 ms |
コンパイル使用メモリ | 164,868 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-21 16:47:03 |
合計ジャッジ時間 | 2,598 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 22 |
ソースコード
#include<bits/stdc++.h> using namespace std; #define REP(i,x,y) for(ll i=x; i<=y; i++) #define BIT(t) ((long long 1) << t) #define PER(i,y,x) for(ll i=y; i>=x; i--) #define SIZE(v) ll(v.size()) #define vll vector<ll> #define vvll vector<vector<ll>> #define pll pair<ll,ll> #define UNIQUE(v) v.erase( unique(v.begin(), v.end()), v.end() ); typedef long long ll; int main(){ ll n; cin >> n; cout << n * (n + 1) / 2 << endl; }