結果
問題 | No.3100 始業式 |
ユーザー | mencotton |
提出日時 | 2023-03-31 22:04:17 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 17 ms / 2,000 ms |
コード長 | 344 bytes |
コンパイル時間 | 530 ms |
コンパイル使用メモリ | 68,208 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-09-23 00:45:33 |
合計ジャッジ時間 | 925 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ソースコード
#include <iostream> using namespace std; int main() { int t; cin >> t; while (t--) { int n; cin >> n; int ret = 0; for (int i = 0; i < n; i++) { int f = 0; cin >> f; ret += 1 - f; } cout << (ret == 0 ? 1 : ret - 1) << endl; } return 0; }