結果

問題 No.1406 Test
ユーザー m_tsubasam_tsubasa
提出日時 2021-02-26 21:29:09
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 1,689 ms
コンパイル使用メモリ 195,004 KB
最終ジャッジ日時 2025-01-19 04:48:09
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int n, sum = 0;
vector<int> a;

int main() {
  cin >> n;
  a.resize(n - 1);
  for (auto &p : a) cin >> p, sum += p;
  int res = 0;
  for (int i = 0; i <= 100; ++i)
    if ((i + sum) % n == 0) ++res;
  cout << res << endl;
  return 0;
}
0