image.png

    1. #include <stdio.h>
    2. #include <stdlib.h>
    3. int main()
    4. {
    5. int num = 0;
    6. int temp_key = 0;
    7. int temp_velue = 0;
    8. int key[1000] = {0};
    9. scanf("%d",&num);
    10. while(scanf("%d %d",&temp_key,&temp_velue)!=EOF)
    11. {
    12. key[temp_key]+=temp_velue;
    13. }
    14. for(int i = 0;i<999;i++)
    15. {
    16. if(key[i]!=0)
    17. {
    18. printf("%d %d\n",i,key[i]);
    19. }
    20. }
    21. }