Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
126564 唐钧 求数的总和 C++ 通过 100 0 MS 240 KB 182 2024-01-24 16:41:33

Tests(2/2):


#include<bits/stdc++.h> using namespace std; priority_queue<int,vector<int>,greater<int> >t; int main() { int x,y=0; while(cin>>x) { y+=x; } cout<<y; return 0; }


测评信息: