結果

問題 No.988 N×Mマス計算(総和)
ユーザー Hydrogen1008Hydrogen1008
提出日時 2020-09-23 10:40:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 647 bytes
コンパイル時間 1,787 ms
コンパイル使用メモリ 166,848 KB
実行使用メモリ 4,612 KB
最終ジャッジ日時 2023-09-09 23:27:58
合計ジャッジ時間 4,242 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,356 KB
testcase_01 AC 1 ms
4,352 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 2 ms
4,356 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1 ms
4,356 KB
testcase_08 AC 2 ms
4,352 KB
testcase_09 AC 2 ms
4,356 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 30 ms
4,352 KB
testcase_14 WA -
testcase_15 AC 25 ms
4,356 KB
testcase_16 AC 51 ms
4,380 KB
testcase_17 AC 63 ms
4,352 KB
testcase_18 AC 35 ms
4,356 KB
testcase_19 AC 58 ms
4,352 KB
testcase_20 AC 86 ms
4,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;

}
0