結果
問題 | No.480 合計 |
ユーザー | fuadul hasan |
提出日時 | 2020-05-20 21:29:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,027 bytes |
コンパイル時間 | 1,451 ms |
コンパイル使用メモリ | 165,772 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-01 23:44:04 |
合計ジャッジ時間 | 2,209 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,824 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,816 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 1 ms
6,820 KB |
testcase_13 | AC | 1 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | AC | 2 ms
6,820 KB |
testcase_17 | AC | 2 ms
6,816 KB |
testcase_18 | AC | 2 ms
6,820 KB |
testcase_19 | AC | 2 ms
6,820 KB |
testcase_20 | AC | 2 ms
6,820 KB |
testcase_21 | AC | 2 ms
6,816 KB |
ソースコード
//Author: Fuadul Hasan(fuadul202@gmail.com) //BSMRSTU,Gopalganj #include<bits/stdc++.h> using namespace std;int tc = 1; #define happy ios::sync_with_stdio(false); #define coding cin.tie(0); #define F first #define S second #define mp make_pair #define ll long long #define Pi atan(1)*4 #define pb push_back #define vpr vector<pr> #define pr pair<int, int> #define vi std::vector<int> #define vll std::vector<ll> #define YES printf("YES\n"); #define NO printf("NO\n"); #define Yes printf("Yes\n"); #define No printf("No\n"); #define all(n) n.begin(),n.end() #define point(x) setprecision(x) #define Test printf("Case %d: ",tc++); #define Unique(c) (c).resize(unique(all(c))-(c).begin()) #define vout(v) for (auto z: v) cout << z << " "; cout << endl; const int M = 1e9 + 7; const ll Inf = (ll)2e18 + 5; const int N = 2e5 + 5; ll vis[N],res[N]; int solve() { //happy coding int n; cin>>n; cout<<(n*(n+1))/2<<endl; return 0; } int main(){ int test = 1; //scanf("%d", &test); while (test--)solve();return 0; }