結果
問題 | No.988 N×Mマス計算(総和) |
ユーザー | Hydrogen1008 |
提出日時 | 2020-09-23 10:40:31 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 647 bytes |
コンパイル時間 | 1,607 ms |
コンパイル使用メモリ | 169,356 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-27 15:53:59 |
合計ジャッジ時間 | 3,298 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 31 ms
5,376 KB |
testcase_14 | WA | - |
testcase_15 | AC | 25 ms
5,376 KB |
testcase_16 | AC | 53 ms
5,376 KB |
testcase_17 | AC | 67 ms
5,376 KB |
testcase_18 | AC | 37 ms
5,376 KB |
testcase_19 | AC | 62 ms
5,376 KB |
testcase_20 | AC | 90 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { long long int N,M,K; string op; cin >> N >> M >> K >> op; int Ans=0; vector<long long int>B(M); vector<long long int>A(N); for(int i=0; i<M; i++){ cin >> B.at(i); } for(int i=0; i<N; i++){ cin >> A.at(i); } if(op == "+"){ for(int i=0; i<N; i++){ Ans=(Ans+M*A.at(i))%K; } for(int i=0; i<M; i++){ Ans=(Ans+N*B.at(i))%K; } } else{ int Asum=0; int Bsum=0; for(int i=0; i<N; i++){ Asum=Asum+A.at(i)%K; } for(int i=0; i<M; i++){ Bsum=(Bsum+B.at(i))%K; } Ans=(Asum*Bsum)%K; } cout << Ans << endl; }