結果
| 問題 | No.353 ヘイトプラス |
| コンテスト | |
| ユーザー |
tkmst201
|
| 提出日時 | 2021-01-12 17:57:35 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 150 bytes |
| 記録 | |
| コンパイル時間 | 829 ms |
| コンパイル使用メモリ | 66,176 KB |
| 最終ジャッジ日時 | 2025-01-17 16:34:04 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 2 |
| other | WA * 7 |
ソースコード
#include <iostream>
#include <numeric>
using namespace std;
int main() {
int A[2];
cin >> A[0] >> A[1];
cout << accumulate(A, A + 2, 0) << endl;
}
tkmst201