結果
問題 | No.1803 Remainder of Sum |
ユーザー | 👑 Nachia |
提出日時 | 2022-01-07 21:41:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 750 bytes |
コンパイル時間 | 622 ms |
コンパイル使用メモリ | 73,848 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-14 08:34:29 |
合計ジャッジ時間 | 1,797 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
testcase_08 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; using i32 = int32_t; using u32 = uint32_t; using i64 = int64_t; using u64 = uint64_t; #define rep(i,n) for(int i=0; i<(n); i++) i64 testcase(){ i64 N,M; cin >> N >> M; if(M == 1) return 0; if(M == 2) return 1; i64 ans = 0; i64 max_costly_erase = M/2; ans += max_costly_erase - 1; ans += (max_costly_erase + 1) * max_costly_erase / 2 - 1; if(N >= M) ans++; return ans; } int main(){ int T; cin >> T; rep(caseid, T) cout << testcase() << "\n"; return 0; } struct ios_do_not_sync{ ios_do_not_sync(){ std::ios::sync_with_stdio(false); std::cin.tie(nullptr); } } ios_do_not_sync_instance;