Twist_Nemo

Exam

Sep 9th, 2021
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.37 KB | None | 0 0
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. #define ll long long
  4. void solve() {
  5.   ll a; cin >> a;
  6.   ll array[a];
  7.   for(ll i=0; i< a; i++) {
  8.     cin >> array[i];
  9.    
  10.   }
  11.   }
  12.  
  13. int main () {
  14.   ios_base::sync_with_stdio(false);
  15.   cin.tie(0);
  16.   cout.tie(0);
  17.   ll testcase ;
  18.  
  19.  
  20.   cin >> testcase;
  21.   while (testcase --) {
  22.      solve();
  23.    
  24.     }
  25.   }
  26.  
  27.  
Advertisement
Add Comment
Please, Sign In to add comment