結果
| 問題 | No.3677 Global Checksum |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2026-09-05 00:27:13 |
| 言語 | C++23 (gcc 15.3.0 + boost 1.92.0) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 638 bytes |
| 記録 | |
| コンパイル時間 | 2,074 ms |
| コンパイル使用メモリ | 342,200 KB |
| 実行使用メモリ | 63,008 KB |
| 最終ジャッジ日時 | 2026-09-05 00:27:22 |
| 合計ジャッジ時間 | 5,785 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge4_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 12 TLE * 1 -- * 7 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
using uint=unsigned int;
int main(){
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n,m;
cin >> n >> m;
{
string dum;
getline(cin,dum);
}
vector<vector<uint>> v(n,vector<uint>(m,0));
vector<uint> w;
uint t=0;
string s;
for(auto &nx : v){
uint c=0;
getline(cin,s);
int pos=0;
s.push_back(' ');
for(auto &ny : nx){
while(s[pos]!=' '){
ny*=10;
ny+=(s[pos]-'0');
pos++;
}
c+=ny;
pos++;
}
t+=c;
w.push_back(c);
}
for(auto &nx : w){
cout << (nx+t) << "\n";
}
return 0;
}