Run ID:115240
提交时间:2025-03-29 20:13:06
#include <stdio.h> int bucket[108]; int main(){ int n,clr,found; scanf("%d",&n); //4 for(int i=1;i<=n;i++) { scanf("%d",&clr); bucket[clr]++; } for(int j=1;j<=100;j++) { if(bucket[j]==1) { printf("%d",j); break; } } return 0; } /* 9 1 1 9 11 5 3 11 5 9 */