結果
問題 | No.821 Making Integers |
ユーザー | edamame882 |
提出日時 | 2019-04-26 23:06:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,081 bytes |
コンパイル時間 | 1,406 ms |
コンパイル使用メモリ | 166,928 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-04 00:40:14 |
合計ジャッジ時間 | 1,892 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; //repetition #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define rep(i, n) for(int i = 0; i < (int)(n); i++) //container util #define all(x) (x).begin(),(x).end() //typedef typedef long long ll; typedef vector<int> VI; typedef vector<VI> VVI; typedef vector<ll> VLL; typedef vector<VLL> VVLL; typedef vector<string> VS; typedef pair<int, int> PII; typedef pair<ll, ll> PLL; // 二項係数計算 long long COM(int n, int k) { if (n < k) return 0; if (n < 0 || k < 0) return 0; if (k == 0) return 1; return n * COM(n - 1, k - 1) / k; } long long Pow(int x, int n){ if(n == 0) return 1; if(n % 2 == 0) { long long sqrtX = Pow(x,n/2); return sqrtX * sqrtX ; }else{ return x * Pow(x,n-1); } } //conversion inline int toInt(string s) {int v; istringstream sin(s);sin>>v;return v;} template<class T> inline string toString(T x) {ostringstream sout;sout<<x;return sout.str();} int main(){ ll n,k; cin >> n >> k; ll ans = 0; ans = 1; cout << 1LL + k*(n+n-k+1)/2LL << endl; return 0; }