Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
440311 徐嘉豪 【C4-1】排除异形基因 C++ 通过 100 1 MS 244 KB 229 2026-05-10 15:08:37

Tests(1/1):


#include<bits/stdc++.h> using namespace std; int main() { int n; cin>>n; int x; for (int i=0;i< n;i++){ cin>>x; if ((x*x)%7!=1){ cout << x; } } return 0; }


测评信息: