結果

問題 No.1201 お菓子配り-4
ユーザー kotatsugamekotatsugame
提出日時 2020-11-27 10:33:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 890 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 43,700 KB
実行使用メモリ 4,384 KB
最終ジャッジ日時 2023-10-01 04:06:58
合計ジャッジ時間 25,218 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
4,376 KB
testcase_01 AC 900 ms
4,380 KB
testcase_02 AC 1,284 ms
4,376 KB
testcase_03 AC 624 ms
4,380 KB
testcase_04 AC 303 ms
4,376 KB
testcase_05 AC 758 ms
4,380 KB
testcase_06 AC 116 ms
4,380 KB
testcase_07 AC 343 ms
4,376 KB
testcase_08 AC 957 ms
4,376 KB
testcase_09 AC 704 ms
4,380 KB
testcase_10 AC 7 ms
4,376 KB
testcase_11 AC 182 ms
4,380 KB
testcase_12 AC 1,462 ms
4,376 KB
testcase_13 AC 41 ms
4,380 KB
testcase_14 AC 21 ms
4,376 KB
testcase_15 AC 1,150 ms
4,380 KB
testcase_16 AC 350 ms
4,376 KB
testcase_17 AC 452 ms
4,376 KB
testcase_18 AC 73 ms
4,376 KB
testcase_19 AC 69 ms
4,380 KB
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 2 ms
4,376 KB
testcase_22 AC 1 ms
4,380 KB
testcase_23 AC 2 ms
4,376 KB
testcase_24 AC 2 ms
4,380 KB
testcase_25 AC 1 ms
4,380 KB
testcase_26 AC 1 ms
4,376 KB
testcase_27 AC 2 ms
4,380 KB
testcase_28 AC 1 ms
4,380 KB
testcase_29 AC 2 ms
4,380 KB
testcase_30 AC 1,847 ms
4,376 KB
testcase_31 AC 1,852 ms
4,380 KB
testcase_32 AC 1,853 ms
4,384 KB
testcase_33 AC 1,852 ms
4,376 KB
testcase_34 AC 1,847 ms
4,376 KB
testcase_35 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:32:1: 警告: ISO C++ では型の無い ‘main’ の宣言を禁止しています [-Wreturn-type]
   32 | main()
      | ^~~~

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include<cstdio>
#include<algorithm>
using namespace std;
unsigned long long floor_sum(unsigned long long N,unsigned long long M,unsigned long long A,unsigned long long B)
//Sum[floor((A*i+B)/M),{i,0,N-1}]
{
	unsigned long long ans=0;
	if(B>=M)
	{
		unsigned long long BM=B/M;
		ans+=N*BM;
		B-=BM*M;
	}
	while(true)
	{
		unsigned long long AM=A/M;
		ans+=N*(N-1)/2*AM;
		A-=AM*M;
		if(A*N+B<M)break;
		unsigned long long Ym=(A*N+B)/M,Xm=Ym*M-B;
		unsigned long long TX=(Xm+A-1)/A;
		ans+=(N-TX)*Ym;
		N=Ym;
		B=TX*A-Xm;
		swap(A,M);
	}
	return ans;
}
int N,M;
int A[2000],B[2000];
main()
{
	scanf("%d%d",&N,&M);
	for(int i=0;i<N;i++)scanf("%d",&A[i]);
	for(int i=0;i<M;i++)scanf("%d",&B[i]);
	unsigned long ans=0;
	for(int i=0;i<N;i++)
	{
		for(int j=0;j<M;j++)
		{
			ans+=2*floor_sum(B[j],B[j],A[i],A[i]);
			ans%=(int)1e9+7;
		}
	}
	printf("%ld\n",ans);
}
0