結果

問題 No.988 N×Mマス計算(総和)
ユーザー keisuke6keisuke6
提出日時 2022-08-26 11:06:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 412 bytes
コンパイル時間 2,603 ms
コンパイル使用メモリ 195,500 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-21 14:28:01
合計ジャッジ時間 3,792 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 24 ms
5,376 KB
testcase_11 AC 38 ms
5,376 KB
testcase_12 AC 62 ms
5,376 KB
testcase_13 AC 29 ms
5,376 KB
testcase_14 AC 27 ms
5,376 KB
testcase_15 AC 27 ms
5,376 KB
testcase_16 AC 53 ms
5,376 KB
testcase_17 AC 63 ms
5,376 KB
testcase_18 AC 35 ms
5,376 KB
testcase_19 AC 57 ms
5,376 KB
testcase_20 AC 84 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

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];
      t %= K;
  }
  if(a == '*') cout<<s*t%K<<endl;
  else{
      cout<<(s*(H%K)+t*(W%K))%K<<endl;
  }
}
0