結果
| 問題 | No.353 ヘイトプラス | 
| コンテスト | |
| ユーザー |  yuruhiya | 
| 提出日時 | 2019-01-10 19:12:53 | 
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 1,000 ms | 
| コード長 | 221 bytes | 
| コンパイル時間 | 439 ms | 
| コンパイル使用メモリ | 59,732 KB | 
| 実行使用メモリ | 5,376 KB | 
| 最終ジャッジ日時 | 2024-07-03 22:41:09 | 
| 合計ジャッジ時間 | 988 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 7 | 
ソースコード
#include <iostream>
#include <vector>
#include <numeric>
using namespace std;
int main() {
	int a, b;
	cin >> a >> b;
	vector<int> n;
	n.push_back(a); n.push_back(b);
	cout << accumulate(n.begin(), n.end(), 0) << endl;
}
            
            
            
        