結果

問題 No.988 N×Mマス計算(総和)
ユーザー keisuke6keisuke6
提出日時 2022-08-26 11:03:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 404 bytes
コンパイル時間 2,042 ms
コンパイル使用メモリ 202,504 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-13 13:11:15
合計ジャッジ時間 4,011 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
  int H,W,K;
  cin>>H>>W>>K;
  char a;
  cin>>a;
  vector<int> A(W),B(H);
  int s=0,t=0;
  for(int i=0;i<W;i++){
      cin>>A[i];
      s += A[i];
      s %= K;
  } 
  for(int i=0;i<H;i++){
      cin>>B[i];
      t += B[i];
      s %= K;
  }
  if(a == '*') cout<<s*t%K<<endl;
  else{
      cout<<(s*H+t*W)%K<<endl;
  }
}
0