結果
問題 | No.987 N×Mマス計算(基本) |
ユーザー | moyashi_1012 |
提出日時 | 2020-02-27 14:12:34 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 971 bytes |
コンパイル時間 | 1,540 ms |
コンパイル使用メモリ | 170,892 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-13 15:54:07 |
合計ジャッジ時間 | 3,169 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,816 KB |
testcase_09 | RE | - |
testcase_10 | WA | - |
testcase_11 | RE | - |
testcase_12 | WA | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | AC | 2 ms
6,816 KB |
testcase_17 | WA | - |
testcase_18 | RE | - |
testcase_19 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); i++) int main() { int N, M; cin >> N >> M; char op; vector<int> B(N); vector<int> A(N); cin >> op; rep(i, M) cin >> B[i]; rep(i, N) cin >> A[i]; vector<vector<int>> C(N, vector<int>(M)); if(op == '+'){ for (size_t i = 0; i < N; i++) { for (size_t j = 0; j < M; j++) { C[i][j] = A[i] + B[j]; } } }else{ for (size_t i = 0; i < N; i++) { for (size_t j = 0; j < M; j++) { C[i][j] = A[i] * B[j]; } } } for (size_t i = 0; i < N; i++) { for (size_t j = 0; j < M; j++) { cout << C[i][j]; if (j == M-1) { cout << endl; }else { cout << " "; } } } }