結果

問題 No.752 mod数列
ユーザー kotatsugamekotatsugame
提出日時 2018-11-10 06:57:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 552 bytes
コンパイル時間 567 ms
コンパイル使用メモリ 64,256 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-05-01 21:55:13
合計ジャッジ時間 12,110 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 652 ms
5,376 KB
testcase_12 AC 1,186 ms
5,376 KB
testcase_13 AC 922 ms
5,376 KB
testcase_14 AC 1,467 ms
5,376 KB
testcase_15 AC 766 ms
5,376 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:26:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   26 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
long p,q,r;
int sum[1<<17];
long f(int x)
{
	long ans=sum[x>r?r:x];
	for(int i=1;i<=r;i++)
	{
		long j=p/i;
		long next=p/(i+1);
		if(x<=next)continue;
		else if(j<=x)
		{
			ans+=(j-next)*(j-next-1)/2*i+(j-next)*(p%j);
		}
		else
		{
			ans+=(j-next)*(j-next-1)/2*i+(j-next)*(p%j);
			ans-=(j-x)*(j-x-1)/2*i+(j-x)*(p%j);
		}
	}
	if(x>p)ans+=(x-p)*p;
	return ans;
}
main()
{
	cin>>p>>q;
	for(int i=1;i*i<=p;r=i++)sum[i]=sum[i-1]+p%i;
	for(int i=0;i<q;i++)
	{
		int l,r;cin>>l>>r;
		cout<<f(r)-f(l-1)<<endl;
	}
}
0