Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
322249 | 123456 | 【C4-1】排除异形基因 | Python3 | 通过 | 100 | 56 MS | 3752 KB | 136 | 2025-05-16 15:44:37 |
n=int(input()) a=list(map(int,input().split())) def jiYin(n): return n*n%7!=1 n=filter(jiYin,a) for i in n: print(i,end=' ')