Gửi bài giải
Điểm:
1,00 (OI)
Giới hạn thời gian:
1.0s
Giới hạn bộ nhớ:
256M
Input:
stdin
Output:
stdout
Nguồn bài:
Dạng bài
Ngôn ngữ cho phép
C, C++, Java, Kotlin, Pascal, PyPy, Python, Scratch
Check if array of m numbers have every number from 1..n
Input
T: Number of testcases (1 <= T <= 20)
For each testcase:
2 integers m and n (1 <= m, n <= ~10^{5}~)
m integers ~a~i (~a~i <= ~10^{9}~, 0<= ~i~ < m)
Output
For each testcase, print "Yes" if array has every number from 1..n, otherwise print "No" (Without quote)
Sample Input:
2
4 3
1 3 2 1
7 6
5 2 1 2 2 5 3
Sample Output:
Yes
No
Bình luận