結果
| 問題 |
No.353 ヘイトプラス
|
| コンテスト | |
| ユーザー |
cww
|
| 提出日時 | 2016-05-23 13:43:58 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 258 bytes |
| コンパイル時間 | 612 ms |
| コンパイル使用メモリ | 68,096 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-29 13:47:39 |
| 合計ジャッジ時間 | 1,096 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 |
ソースコード
#include <iostream>
#include <vector>
#include <numeric>
using namespace std;
int main(){
cin.tie(0);
ios::sync_with_stdio(false);
vector<int> vc(2);
for(auto& x : vc){
cin >> x;
}
cout << accumulate(vc.begin(), vc.end(), 0) << endl;
return 0;
}
cww