結果
問題 | No.987 N×Mマス計算(基本) |
ユーザー | hys0290 |
提出日時 | 2020-03-08 22:52:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 563 bytes |
コンパイル時間 | 1,436 ms |
コンパイル使用メモリ | 163,320 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-04-25 09:40:57 |
合計ジャッジ時間 | 2,156 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
ソースコード
#include <bits/stdc++.h> #include <stdlib.h> using namespace std; typedef long long ll; int main(){ ll N,M; string op; cin >> N >> M; cin >> op; ll A[100]; ll B[100]; ll C[100][100]; for(ll i= 0;i<N;i++){ cin >> A[i]; } for(ll i= 0;i<M;i++){ cin >> B[i]; } for(ll i= 0;i<N;i++){ for(ll j = 0;j<M;j++){ if(op=="+"){ C[i][j]=A[i]+B[j]; } if(op=="*"){ C[i][j]=A[i]*B[j]; } } } for(ll i=0;i<N;i++){ for(ll j = 0;j<M;j++){ if(j ==M-1) cout << C[i][j]<<endl; else cout << C[i][j]<<" "; } } return 0; }