結果
問題 | No.1972 Modulo Set |
ユーザー | Haa |
提出日時 | 2022-06-10 21:26:53 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 822 bytes |
コンパイル時間 | 1,949 ms |
コンパイル使用メモリ | 179,404 KB |
実行使用メモリ | 19,584 KB |
最終ジャッジ日時 | 2024-09-21 05:57:56 |
合計ジャッジ時間 | 5,734 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 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 | 4 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 7 ms
5,376 KB |
testcase_14 | AC | 7 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | AC | 68 ms
8,448 KB |
testcase_17 | AC | 23 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 58 ms
8,576 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 48 ms
8,320 KB |
testcase_23 | AC | 113 ms
16,896 KB |
testcase_24 | AC | 44 ms
8,936 KB |
testcase_25 | AC | 66 ms
11,776 KB |
testcase_26 | WA | - |
testcase_27 | AC | 120 ms
17,664 KB |
testcase_28 | AC | 44 ms
9,172 KB |
testcase_29 | AC | 70 ms
12,032 KB |
testcase_30 | AC | 97 ms
15,360 KB |
testcase_31 | AC | 6 ms
5,376 KB |
testcase_32 | AC | 93 ms
14,208 KB |
testcase_33 | AC | 137 ms
19,584 KB |
testcase_34 | AC | 144 ms
19,584 KB |
testcase_35 | AC | 136 ms
19,584 KB |
testcase_36 | AC | 138 ms
19,584 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long int ll; typedef pair<ll,ll> P; typedef vector<ll> VI; typedef vector<VI> VVI; #define REP(i,n) for(ll i=0;i<(n);i++) #define ALL(v) v.begin(),v.end() template<typename T> bool chmax(T &x, const T &y) {return (x<y)?(x=y,true):false;}; template<typename T> bool chmin(T &x, const T &y) {return (x>y)?(x=y,true):false;}; constexpr ll MOD=998244353; constexpr ll INF=2e18; int main(){ ll n, m; cin >> n >> m; VI a(n); REP(i,n) cin >> a[i]; map<ll,int> mp; REP(i,n) mp[a[i]%m]++; set<ll> used; int ans=0; for(auto p:mp){ if(used.find(min(p.first,m-p.first))!=used.end()) continue; used.insert(min(p.first,m-p.first)); ans+=max(p.second,mp[m-p.first]); } cout << ans << endl; return 0; }