結果
問題 | No.988 N×Mマス計算(総和) |
ユーザー | leaf_1415 |
提出日時 | 2020-02-14 21:27:41 |
言語 | C++11 (gcc 11.4.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 653 bytes |
コンパイル時間 | 551 ms |
コンパイル使用メモリ | 54,340 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-06 06:54:31 |
合計ジャッジ時間 | 2,870 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,944 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
ソースコード
#include <iostream> #define llint long long using namespace std; llint h, w, k; char op; llint a[105], b[105]; int main(void) { ios::sync_with_stdio(0); cin.tie(0); cin >> h >> w >> k; cin >> op; for(int i = 1; i <= w; i++) cin >> a[i]; for(int i = 1; i <= h; i++) cin >> b[i]; llint asum = 0, bsum = 0; for(int i = 1; i <= w; i++) asum += a[i], asum %= k; for(int i = 1; i <= h; i++) bsum += b[i], bsum %= k; llint ans; if(op == '+'){ ans = bsum * w % k + asum * h % k; ans %= k; cout << ans << endl; return 0; } else{ ans = asum * bsum % k; cout << ans << endl; return 0; } return 0; }