結果
問題 | No.987 N×Mマス計算(基本) |
ユーザー |
![]() |
提出日時 | 2020-02-15 03:23:05 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 1,079 bytes |
コンパイル時間 | 1,135 ms |
コンパイル使用メモリ | 112,400 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-06 13:39:25 |
合計ジャッジ時間 | 1,817 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 18 |
ソースコード
#include<iostream> #include<string> #include<cstdio> #include<vector> #include<cmath> #include<algorithm> #include<functional> #include<iomanip> #include<queue> #include<ciso646> #include<utility> #include<map> #include<set> #include<bitset> #include<stack> #include<cassert> #include<random> #include<unordered_map> #include<numeric> using namespace std; using ll = long long; const ll mod = 1000000007; const ll INF = (1e+18) + 7; #define rep(i,n) for(int i=0;i<n;i++) #define Rep(i,sta,n) for(int i=sta;i<n;i++) #define per(i,n) for(int i=n-1;i>=0;i--) #define all(x) (x).begin(),(x).end() #define stop char nyaa;cin>>nyaa; using P = pair<int, int>; using LP = pair<ll, ll>; void solve() { int h, w; cin >> h >> w; char c; cin >> c; vector<ll> a(h), b(w); rep(j, w)cin >> b[j]; rep(i, h)cin >> a[i]; rep(i, h){ rep(j, w) { if (j > 0)cout << " "; if (c == '+')cout << a[i] + b[j]; else cout << a[i] * b[j]; } cout << endl; } } signed main() { cin.tie(0); ios::sync_with_stdio(false); //int t; cin >> t;rep(i,t) solve(); solve(); stop return 0; }