Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
115239 | 胡海峰老师 | 19买画笔 | Python3 | Compile Error | 0 MS | 0 KB | 327 | 2025-03-29 20:12:56 |
#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 */
File "Main.py", line 3 int bucket[108]; ^ SyntaxError: invalid syntax