結果

問題 No.1201 お菓子配り-4
ユーザー SSRSSSRS
提出日時 2020-08-28 21:58:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 966 bytes
コンパイル時間 2,426 ms
コンパイル使用メモリ 218,284 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-11-14 00:26:54
合計ジャッジ時間 43,714 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
10,020 KB
testcase_01 AC 1,644 ms
6,820 KB
testcase_02 AC 2,342 ms
6,816 KB
testcase_03 AC 1,141 ms
6,820 KB
testcase_04 AC 559 ms
6,820 KB
testcase_05 AC 1,385 ms
6,816 KB
testcase_06 AC 212 ms
6,816 KB
testcase_07 AC 625 ms
6,816 KB
testcase_08 AC 1,747 ms
6,820 KB
testcase_09 AC 1,283 ms
6,816 KB
testcase_10 AC 11 ms
6,816 KB
testcase_11 AC 334 ms
6,816 KB
testcase_12 AC 2,693 ms
6,816 KB
testcase_13 AC 75 ms
6,820 KB
testcase_14 AC 38 ms
6,816 KB
testcase_15 AC 2,111 ms
6,820 KB
testcase_16 AC 637 ms
6,820 KB
testcase_17 AC 832 ms
6,820 KB
testcase_18 AC 135 ms
6,816 KB
testcase_19 AC 128 ms
6,816 KB
testcase_20 AC 2 ms
6,816 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 2 ms
6,816 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,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 3,391 ms
6,820 KB
testcase_31 AC 3,398 ms
6,816 KB
testcase_32 AC 3,406 ms
6,820 KB
testcase_33 AC 3,410 ms
6,820 KB
testcase_34 AC 3,398 ms
6,820 KB
testcase_35 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:1:28: warning: bad option '-favx2' to pragma 'optimize' [-Wpragmas]
    1 | #pragma GCC optimize("avx2")
      |                            ^
main.cpp:6:81: warning: bad option '-favx2' to attribute 'optimize' [-Wattributes]
    6 | long long sum_of_floor_linear(long long a, long long b, long long c, long long n){
      |                                                                                 ^
main.cpp:20:10: warning: bad option '-favx2' to attribute 'optimize' [-Wattributes]
   20 | int main(){
      |          ^

ソースコード

diff #

#pragma GCC optimize("avx2")
#include <bits/stdc++.h>
using namespace std;
const long long MOD = 1000000007;
//https://judge.yosupo.jp/submission/5724
long long sum_of_floor_linear(long long a, long long b, long long c, long long n){
    long long tmp=b/c*n+a/c*n*(n-1)/2;
    if(a%c==0){
        return tmp;
    }
    long long next=(c-b%c+a%c-1)/(a%c);
    if(next>=n){
        return tmp;
    }
    a%=c;
    b=b%c+a*next;
    n-=next;
    return tmp+sum_of_floor_linear(c,n*a-((b+a*(n-1))/c*c-b),a,(b+a*(n-1))/c);
}
int main(){
  int N;
  cin >> N;
  int M;
  cin >> M;
  vector<long long> A(N);
  for (int i = 0; i < N; i++){
    cin >> A[i];
  }
  vector<long long> B(M);
  for (int i = 0; i < M; i++){
    cin >> B[i];
  }
  long long ans = 0;
  for (int i = 0; i < N; i++){
    for (int j = 0; j < M; j++){
      long long tmp = sum_of_floor_linear(A[i], A[i], B[j], B[j]);
      ans += tmp % MOD;
    }
  }
  ans *= 2;
  ans %= MOD;
  cout << ans << endl;
}
0