結果
| 問題 | No.353 ヘイトプラス |
| コンテスト | |
| ユーザー |
tkmst201
|
| 提出日時 | 2021-01-12 17:57:35 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.90.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 150 bytes |
| 記録 | |
| コンパイル時間 | 392 ms |
| コンパイル使用メモリ | 79,104 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-06-16 15:30:30 |
| 合計ジャッジ時間 | 2,388 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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