結果
問題 | No.988 N×Mマス計算(総和) |
ユーザー | kpinkcat |
提出日時 | 2023-08-23 18:15:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 704 bytes |
コンパイル時間 | 2,465 ms |
コンパイル使用メモリ | 107,456 KB |
実行使用メモリ | 13,756 KB |
最終ジャッジ日時 | 2024-06-01 15:39:51 |
合計ジャッジ時間 | 8,561 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
13,756 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 5 ms
6,944 KB |
testcase_08 | AC | 4 ms
6,944 KB |
testcase_09 | AC | 4 ms
6,944 KB |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
#include<iostream> #include<map> #include<vector> #include <algorithm> #include<math.h> #include <iomanip> #include<set> #include <numeric> using namespace std; int main() { long long n, m, k, sum1= 0; string op; cin >> n >> m >> k >> op; vector<int> hori(m), ver(n); for (int i = 0; i < m; i++) cin >> hori[i]; for (int i = 0; i < n; i++) cin >> ver[i]; for (int i = 0; i < n; i++){ for (int j = 0; j < m; j++){ if (op == "+"){ sum1 += (hori[j] + ver[i]); sum1 %= k; } else { sum1 += (hori[j] * ver[i]); sum1 %= k; } } } cout << sum1 << endl; }