結果
問題 | No.3100 始業式 |
ユーザー | fura |
提出日時 | 2023-09-10 14:56:17 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 17 ms / 2,000 ms |
コード長 | 366 bytes |
コンパイル時間 | 2,666 ms |
コンパイル使用メモリ | 242,940 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-06-28 06:08:24 |
合計ジャッジ時間 | 3,128 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ソースコード
#include <bits/stdc++.h> #define rep(i, n) for (int i = 0; i < (n); i++) using namespace std; void solve() { int n; cin >> n; int cnt = n; rep (i, n) { int a; cin >> a; cnt -= a; } cout << (cnt + 1) % (n + 1) << "\n"; } int main() { int t; cin >> t; rep (_, t) { solve(); } return 0; }