結果

問題 No.3100 始業式
ユーザー achapiachapi
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
77,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for i in range(t):
    n = int(input())
    a = list(map(int,input().split()))
    print((a.count(0)+1)%(n+1))
0