結果

問題 No.3217 Shiki no Shiki
ユーザー a01sa01to
提出日時 2025-08-03 00:09:57
言語 C++23
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 432 bytes
コンパイル時間 2,935 ms
コンパイル使用メモリ 280,944 KB
実行使用メモリ 7,720 KB
最終ジャッジ日時 2025-08-03 00:10:03
合計ジャッジ時間 5,201 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 2 WA * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i = 0; i < (n); ++i)
using ll = long long;
using ull = unsigned long long;

int main() {
  cin.tie(nullptr)->sync_with_stdio(false);
  int n;
  cin >> n;
  vector<int> a(n);
  rep(i, n) cin >> a[i], a[i]--;
  set<int> ans;
  rep(i, n) {
    if (a[i] != -1)
      if (a[a[i]] != -1)
        ans.insert(a[a[i]]);
  }
  cout << ans.size() << '\n';
  return 0;
}
0