#include <stdio.h>
#include <string.h>
#include <stdbool.h>
#define N 10010
int a[N], b[N], c[N]; //用来存放每个礼炮车的发射时间
int num[N]; //存放没有重复的声响时间
int count = 0; //记录观众可以听到的声响
bool isRepeat(int a)
{
for(int i = 0; i < count; i++)
if(a == num[i]) return t...