Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
5289 D班-苏莉雯 序列的最大值 C++ 通过 100 1 MS 256 KB 180 2025-01-31 14:25:22

Tests(5/5):


#include<bits/stdc++.h> using namespace std; int main() { int a,b,max=0; cin>>a; for(int i=1;i<=a;i++) { cin>>b; if(b>max) { max=b; } } cout<<max; }


测评信息: