結果
問題 | No.988 N×Mマス計算(総和) |
ユーザー | heno239 |
提出日時 | 2020-02-15 03:25:47 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 28 ms / 2,000 ms |
コード長 | 1,241 bytes |
コンパイル時間 | 832 ms |
コンパイル使用メモリ | 110,988 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-06 07:22:12 |
合計ジャッジ時間 | 1,798 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 8 ms
5,376 KB |
testcase_11 | AC | 11 ms
5,376 KB |
testcase_12 | AC | 18 ms
5,376 KB |
testcase_13 | AC | 10 ms
5,376 KB |
testcase_14 | AC | 8 ms
5,376 KB |
testcase_15 | AC | 8 ms
5,376 KB |
testcase_16 | AC | 16 ms
5,376 KB |
testcase_17 | AC | 21 ms
5,376 KB |
testcase_18 | AC | 11 ms
5,376 KB |
testcase_19 | AC | 19 ms
5,376 KB |
testcase_20 | AC | 28 ms
5,376 KB |
ソースコード
#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; ll m; cin >> m; char c; cin >> c; vector<ll> a(h), b(w); rep(j, w)cin >> b[j]; rep(i, h)cin >> a[i]; if (c == '+') { ll ans = 0; rep(i, h) { ans += a[i] * w; ans %= m; } rep(j, w) { ans += b[j] * h; ans %= m; } cout << ans << endl; } else { ll sa = 0, sb = 0; rep(i, h)sa += a[i]; rep(j, w)sb += b[j]; sa %= m; sb %= m; cout << sa * sb%m << endl; } } signed main() { cin.tie(0); ios::sync_with_stdio(false); //int t; cin >> t;rep(i,t) solve(); solve(); stop return 0; }