fork download
  1. import java.util.ArrayList;
  2.  
  3. public class Main
  4. {
  5. public static void main(String[] args)
  6. {
  7. int test_case=50;
  8. while(test_case-->0)
  9. {
  10. Codeforces CF=new Codeforces();
  11. CF.solve();
  12. }
  13. }
  14. }
  15.  
  16. class Codeforces
  17. {
  18. public ArrayList<Integer>a;
  19. public Codeforces()
  20. {
  21. a=new ArrayList<Integer>(10000000);
  22. }
  23. public void solve()
  24. {
  25.  
  26. }
  27. }
Success #stdin #stdout 0.36s 70036KB
stdin
Standard input is empty
stdout
Standard output is empty