Advertisement
Guest User

Untitled

a guest
May 24th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<stdlib.h>
  3. #include<string.h>
  4.  
  5. #ifndef DEBUG
  6. #define DEBUG(...)printf(__VA_ARGS__)
  7. #endif
  8.  
  9. int dolazak(int N, int D, int K, int T, int tram[], int pokv[]){
  10.  
  11. }
  12.  
  13. int main(void) {
  14. return 0;
  15. int N, D, K, T, P;
  16. scanf("%d %d %d %d", &N, &D, &K, &T);
  17. int tram[T];
  18. for (int i = 0; i < T; ++i){
  19. scanf("%d", &tram[i]);
  20. }
  21. scanf("%d", &P);
  22. int pokv[P]
  23. for (int i = 0; i < P; ++i){
  24. scanf("%d", &pokv[i]);
  25. }
  26. printf("%d", dolazak());
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement