結果

問題 No.1201 お菓子配り-4
ユーザー PCTprobabilityPCTprobability
提出日時 2020-08-22 13:34:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,243 ms / 4,000 ms
コード長 868 bytes
コンパイル時間 2,214 ms
コンパイル使用メモリ 204,048 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-07 13:21:08
合計ジャッジ時間 16,198 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
6,816 KB
testcase_01 AC 485 ms
6,816 KB
testcase_02 AC 704 ms
6,816 KB
testcase_03 AC 341 ms
6,820 KB
testcase_04 AC 168 ms
6,820 KB
testcase_05 AC 414 ms
6,816 KB
testcase_06 AC 65 ms
6,816 KB
testcase_07 AC 187 ms
6,820 KB
testcase_08 AC 520 ms
6,816 KB
testcase_09 AC 382 ms
6,816 KB
testcase_10 AC 6 ms
6,816 KB
testcase_11 AC 99 ms
6,816 KB
testcase_12 AC 799 ms
6,820 KB
testcase_13 AC 24 ms
6,816 KB
testcase_14 AC 13 ms
6,816 KB
testcase_15 AC 628 ms
6,816 KB
testcase_16 AC 191 ms
6,816 KB
testcase_17 AC 244 ms
6,816 KB
testcase_18 AC 40 ms
6,816 KB
testcase_19 AC 40 ms
6,816 KB
testcase_20 AC 2 ms
6,820 KB
testcase_21 AC 1 ms
6,816 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 1 ms
6,820 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 1,015 ms
6,820 KB
testcase_31 AC 1,021 ms
6,820 KB
testcase_32 AC 1,018 ms
6,816 KB
testcase_33 AC 1,020 ms
6,820 KB
testcase_34 AC 1,017 ms
6,824 KB
testcase_35 AC 2,243 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <random>
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
ll mygcd(ll a, ll b)
{
   if (a%b == 0)
   {
       return(b);
   }
   else
   {
       return(mygcd(b, a%b));
   }
}
int main(){
 ll n,m;
  cin>>n>>m;
  assert(1<=n&&n<=2000&&1<=m&&m<=2000);
  vector<ll> a(n);
  vector<ll> b(m);
  for(int i=0;i<n;i++){
      assert(a.at(i)>=0&&a.at(i)<=100000000);
    cin>>a.at(i);
  }
  for(int i=0;i<m;i++){
      assert(b.at(i)>=0&&b.at(i)<=100000000);
    cin>>b.at(i);
  }
 ll ans=0;
  ll x,y;
  x=0;
  y=0;
  for(int i=0;i<n;i++){
    x=(x+a.at(i)-1)%1000000007;
  }
  for(int i=0;i<m;i++){
    y=(y+b.at(i)+1)%1000000007;
  }
  for(int i=0;i<n;i++){
    for(int j=0;j<m;j++){
      ans=(ans+mygcd(a.at(i),b.at(j)))%1000000007;
    }
  }
  ans=(ans+((x*y)%1000000007)+((m*n)%1000000007))%1000000007;
  cout<<ans<<endl;
}
0