結果
問題 | No.987 N×Mマス計算(基本) |
ユーザー | trineutron |
提出日時 | 2020-02-14 21:28:57 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 525 bytes |
コンパイル時間 | 1,862 ms |
コンパイル使用メモリ | 203,440 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-06 10:39:57 |
合計ジャッジ時間 | 3,803 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | WA | - |
testcase_10 | RE | - |
testcase_11 | WA | - |
testcase_12 | RE | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int n, m; cin >> n >> m; char op; cin >> op; vector<int64_t> a(n), b(m); for (int i = 0; i < m; i++) cin >> b.at(i); for (int i = 0; i < n; i++) cin >> a.at(i); for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { if (op == '+') { cout << a.at(i) + b.at(i) << " "; } else { cout << a.at(i) * b.at(i) << " "; } } cout << endl; } }