結果
問題 | No.3100 始業式 |
ユーザー | kokonotsu |
提出日時 | 2023-03-31 22:00:37 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 158 bytes |
コンパイル時間 | 177 ms |
コンパイル使用メモリ | 82,276 KB |
実行使用メモリ | 77,120 KB |
最終ジャッジ日時 | 2024-09-23 00:40:39 |
合計ジャッジ時間 | 830 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ソースコード
from collections import Counter T = int(input()) for _ in range(T): N = int(input()) cnt = Counter(list(map(int, input().split()))) print(cnt[1])