結果
問題 | No.1972 Modulo Set |
ユーザー | magsta |
提出日時 | 2022-06-06 14:23:42 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,203 bytes |
コンパイル時間 | 7,666 ms |
コンパイル使用メモリ | 234,676 KB |
実行使用メモリ | 32,912 KB |
最終ジャッジ日時 | 2024-09-21 04:38:31 |
合計ジャッジ時間 | 10,949 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 5 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 9 ms
5,376 KB |
testcase_14 | AC | 8 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | AC | 121 ms
17,804 KB |
testcase_17 | AC | 39 ms
8,548 KB |
testcase_18 | AC | 3 ms
5,376 KB |
testcase_19 | AC | 98 ms
15,748 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 85 ms
14,400 KB |
testcase_23 | AC | 185 ms
27,092 KB |
testcase_24 | AC | 62 ms
12,880 KB |
testcase_25 | AC | 103 ms
17,876 KB |
testcase_26 | WA | - |
testcase_27 | AC | 187 ms
28,140 KB |
testcase_28 | AC | 60 ms
13,136 KB |
testcase_29 | AC | 98 ms
17,860 KB |
testcase_30 | AC | 153 ms
23,108 KB |
testcase_31 | AC | 8 ms
5,376 KB |
testcase_32 | AC | 129 ms
21,288 KB |
testcase_33 | AC | 228 ms
31,292 KB |
testcase_34 | AC | 233 ms
31,428 KB |
testcase_35 | AC | 233 ms
31,164 KB |
testcase_36 | WA | - |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <utility> #include <cmath> #include <cstdlib> #include <map> #include <set> #include <queue> #include <vector> #include "testlib.h" using namespace std; #define MOD 998244353 int main() { registerValidation(); long long N = inf.readLong((long long)1, (long long)100000, "N"); inf.readSpace(); long long M = inf.readLong((long long)1, (long long)1000000000000, "M"); inf.readEoln(); vector<long long> A(N); A[0] = inf.readLong((long long)1, (long long)1000000000000, "A1"); map<long long, long long> Map2; Map2[A[0]]++; for (int i = 1; i < N; i++) { inf.readSpace(); A[i] = inf.readLong((long long)1, (long long)1000000000000, "A"); Map2[A[i]]++; if (Map2[A[i]] > 1) cout << -1 << endl; } inf.readEoln(); inf.readEof(); map<long long, long long> Map; set<long long> Set; for (int i = 0; i < N; i++) { Map[A[i] % M]++; Set.insert(A[i] % M); } long long count = 0; while (!Set.empty()) { long long a = *Set.begin(); Set.erase(Set.begin()); count += max(Map[a], Map[M - a]); Map[a] = 0; Map[M - a] = 0; } cout << count << endl; }