結果
| 問題 |
No.8100 始業式
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2023-03-31 23:22:12 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 112 ms / 2,000 ms |
| コード長 | 127 bytes |
| コンパイル時間 | 509 ms |
| コンパイル使用メモリ | 82,364 KB |
| 実行使用メモリ | 77,152 KB |
| 最終ジャッジ日時 | 2024-09-23 02:25:52 |
| 合計ジャッジ時間 | 1,044 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 |
ソースコード
t = int(input())
for i in range(t):
n = int(input())
a = list(map(int,input().split()))
print((a.count(0)+1)%(n+1))