結果
| 問題 |
No.353 ヘイトプラス
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-05-01 17:18:59 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 536 bytes |
| コンパイル時間 | 706 ms |
| コンパイル使用メモリ | 81,052 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-29 13:41:52 |
| 合計ジャッジ時間 | 1,120 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 |
ソースコード
#include <algorithm>
#include <cmath>
#include <complex>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <string>
#include <vector>
using namespace std;
typedef long long int ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef vector<int> vi;
#define pb push_back
int main(){
ios::sync_with_stdio(false);
vi a(2);
cin >> a[0] >> a[1];
cout << accumulate(a.begin(), a.end(), 0) << "\n";
return 0;
}