結果

問題 No.1946 ロッカーの問題
ユーザー umezoumezo
提出日時 2022-05-20 22:36:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 273 ms / 3,000 ms
コード長 674 bytes
コンパイル時間 2,256 ms
コンパイル使用メモリ 203,120 KB
実行使用メモリ 26,880 KB
最終ジャッジ日時 2024-09-20 08:52:54
合計ジャッジ時間 7,751 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 238 ms
24,904 KB
testcase_01 AC 240 ms
24,704 KB
testcase_02 AC 253 ms
26,112 KB
testcase_03 AC 273 ms
26,880 KB
testcase_04 AC 246 ms
25,984 KB
testcase_05 AC 238 ms
25,856 KB
testcase_06 AC 257 ms
25,856 KB
testcase_07 AC 240 ms
25,600 KB
testcase_08 AC 244 ms
25,428 KB
testcase_09 AC 249 ms
26,740 KB
testcase_10 AC 262 ms
26,428 KB
testcase_11 AC 225 ms
24,908 KB
testcase_12 AC 235 ms
25,280 KB
testcase_13 AC 236 ms
24,724 KB
testcase_14 AC 256 ms
24,784 KB
testcase_15 AC 221 ms
24,832 KB
testcase_16 AC 216 ms
24,704 KB
testcase_17 AC 239 ms
25,600 KB
testcase_18 AC 242 ms
26,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;

#include <bits/stdc++.h>
using namespace std;

vector<int> G[200200];

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  
  for(int i=1;i<=200000;i++){
    for(int j=i;j<=200000;j+=i) G[j].push_back(i);
  }
  
  int n,m;
  cin>>n>>m;
  vector<int> A(m);
  rep(i,m) cin>>A[i];
  
  vector<int> B(n+1),C(n+1);
  rep(i,m) C[A[i]]=1;
  for(int i=1;i<=n;i++) B[i]=n/i;

  int cnt=0;
  for(int i=n;i>=1;i--){
    if(B[i]%2!=C[i]){
      cnt++;
      for(auto t:G[i]){
        if(t==i) break;
        B[t]--;
      }
    }
  }
  cout<<cnt<<endl;

  return 0;
}
0