結果
問題 | No.1972 Modulo Set |
ユーザー | Haa |
提出日時 | 2022-06-10 21:31:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 149 ms / 2,000 ms |
コード長 | 1,011 bytes |
コンパイル時間 | 1,840 ms |
コンパイル使用メモリ | 179,792 KB |
実行使用メモリ | 14,336 KB |
最終ジャッジ日時 | 2024-10-05 01:26:24 |
合計ジャッジ時間 | 5,126 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 14 ms
5,248 KB |
testcase_04 | AC | 20 ms
5,248 KB |
testcase_05 | AC | 24 ms
5,248 KB |
testcase_06 | AC | 37 ms
5,248 KB |
testcase_07 | AC | 55 ms
5,248 KB |
testcase_08 | AC | 26 ms
5,248 KB |
testcase_09 | AC | 4 ms
5,248 KB |
testcase_10 | AC | 20 ms
5,248 KB |
testcase_11 | AC | 54 ms
5,248 KB |
testcase_12 | AC | 10 ms
5,248 KB |
testcase_13 | AC | 6 ms
5,248 KB |
testcase_14 | AC | 7 ms
5,248 KB |
testcase_15 | AC | 65 ms
6,528 KB |
testcase_16 | AC | 74 ms
7,680 KB |
testcase_17 | AC | 25 ms
5,248 KB |
testcase_18 | AC | 2 ms
5,248 KB |
testcase_19 | AC | 63 ms
7,424 KB |
testcase_20 | AC | 78 ms
8,192 KB |
testcase_21 | AC | 30 ms
5,248 KB |
testcase_22 | AC | 54 ms
7,168 KB |
testcase_23 | AC | 121 ms
12,416 KB |
testcase_24 | AC | 41 ms
7,148 KB |
testcase_25 | AC | 66 ms
8,960 KB |
testcase_26 | AC | 87 ms
7,552 KB |
testcase_27 | AC | 124 ms
12,928 KB |
testcase_28 | AC | 42 ms
7,128 KB |
testcase_29 | AC | 67 ms
8,960 KB |
testcase_30 | AC | 96 ms
11,136 KB |
testcase_31 | AC | 6 ms
5,248 KB |
testcase_32 | AC | 88 ms
10,368 KB |
testcase_33 | AC | 144 ms
14,208 KB |
testcase_34 | AC | 147 ms
14,208 KB |
testcase_35 | AC | 149 ms
14,336 KB |
testcase_36 | AC | 143 ms
14,208 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(p.first==0||p.first*2==m){ ans+=min(1,p.second); continue; } if(used.find(min(p.first,m-p.first))!=used.end()) continue; used.insert(min(p.first,m-p.first)); if(mp.find(m-p.first)==mp.end()) ans+=p.second; else ans+=max(p.second,mp[m-p.first]); } cout << ans << endl; return 0; }