結果
| 問題 |
No.353 ヘイトプラス
|
| コンテスト | |
| ユーザー |
hatsuka_iwa
|
| 提出日時 | 2021-02-05 04:02:57 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 1,000 ms |
| コード長 | 195 bytes |
| コンパイル時間 | 564 ms |
| コンパイル使用メモリ | 67,968 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-07-01 10:25:13 |
| 合計ジャッジ時間 | 1,313 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 7 |
ソースコード
#include <iostream>
#include <vector>
#include <numeric>
using namespace std;
int main() {
vector<int> A(2);
cin >> A.at(0) >> A.at(1);
cout << accumulate(A.begin(), A.end(), 0) << endl;
}
hatsuka_iwa