結果
問題 | No.1803 Remainder of Sum |
ユーザー | Nikita Skybytskyi |
提出日時 | 2022-01-07 22:50:55 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 374 bytes |
コンパイル時間 | 3,359 ms |
コンパイル使用メモリ | 163,124 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-14 08:59:49 |
合計ジャッジ時間 | 3,748 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 33 ms
6,816 KB |
testcase_08 | WA | - |
ソースコード
/* * Author: nskybytskyi * Time: 2022-01-07 14:20:00 */ #include <bits/stdc++.h> using namespace std; int main() { cin.tie(0)->sync_with_stdio(0); int t; cin >> t; while (t--) { int n, m; cin >> n >> m; if (m <= n) { cout << m / 2 << "\n"; } else { cout << ((m - n) * 1ll * (m - n + 5)) / 2 + m + 1 << "\n"; } } return 0; }