fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. /*
  4.  * Focus on constraint in problem.
  5.  * Before write your algorithm to solve problem ...calculate the Complexity in your code
  6.  * good luck :)
  7.  * */
  8. int main(){
  9. ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0); //fast io or use input syntax in clang
  10. int t = 1;
  11. //cin >> t; //(when problem need test case -> active this line)
  12. while(t--){
  13.  
  14.  
  15. //if u need print a new line , please use '\n' instead of endl
  16. }
  17. }
Success #stdin #stdout 0.01s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty