結果
問題 | No.821 Making Integers |
ユーザー | 🍮かんプリン |
提出日時 | 2020-06-13 16:39:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 268 bytes |
コンパイル時間 | 2,497 ms |
コンパイル使用メモリ | 157,428 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-25 14:25:12 |
合計ジャッジ時間 | 2,422 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
ソースコード
/** * @FileName a.cpp * @Author kanpurin * @Created 2020.06.13 16:38:54 **/ #include "bits/stdc++.h" using namespace std; typedef long long ll; int main() { ll n,k;cin >> n >> k; cout << k * (2 * n - k + 1) / 2 - k % 2 + 1 << endl; return 0; }