結果

問題 No.1201 お菓子配り-4
ユーザー kotatsugamekotatsugame
提出日時 2020-11-27 10:24:03
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 762 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 42,624 KB
実行使用メモリ 9,632 KB
最終ジャッジ日時 2024-07-23 21:27:40
合計ジャッジ時間 32,397 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
6,812 KB
testcase_01 AC 1,204 ms
6,812 KB
testcase_02 AC 1,742 ms
6,940 KB
testcase_03 AC 844 ms
6,940 KB
testcase_04 AC 410 ms
6,940 KB
testcase_05 AC 1,023 ms
6,944 KB
testcase_06 AC 156 ms
6,944 KB
testcase_07 AC 463 ms
6,944 KB
testcase_08 AC 1,290 ms
6,944 KB
testcase_09 AC 947 ms
6,940 KB
testcase_10 AC 9 ms
6,944 KB
testcase_11 AC 245 ms
6,940 KB
testcase_12 AC 1,963 ms
6,940 KB
testcase_13 AC 55 ms
6,940 KB
testcase_14 AC 28 ms
6,944 KB
testcase_15 AC 1,550 ms
6,944 KB
testcase_16 AC 470 ms
6,944 KB
testcase_17 AC 608 ms
6,940 KB
testcase_18 AC 98 ms
6,940 KB
testcase_19 AC 93 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 1 ms
6,944 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 2,494 ms
6,940 KB
testcase_31 AC 2,493 ms
6,944 KB
testcase_32 AC 2,492 ms
6,940 KB
testcase_33 AC 2,494 ms
6,940 KB
testcase_34 AC 2,501 ms
6,944 KB
testcase_35 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:33:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   33 | main()
      | ^~~~

ソースコード

diff #

#include<cstdio>
#include<algorithm>
using namespace std;
long long floor_sum(long long N,long long M,long long A,long long B)
//Sum[floor((A*i+B)/M),{i,0,N-1}]
{
	long long ans=0;
	if(B>=M)
	{
		long long BM=B/M;
		ans+=N*BM;
		B-=BM*M;
	}
	while(true)
	{
		if(A>=M)
		{
			long long AM=A/M;
			ans+=N*(N-1)/2*AM;
			A-=AM*M;
		}
		if(A*N+B<M)return ans;
		long long Ym=(A*N+B)/M,Xm=Ym*M-B;
		long long TX=(Xm+A-1)/A;
		ans+=(N-TX)*Ym;
		N=Ym;
		B=TX*A-Xm;
		swap(A,M);
	}
}
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]);
	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