結果

問題 No.1203 お菓子ゲーム
ユーザー chocoruskchocorusk
提出日時 2020-08-29 04:27:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 1,500 bytes
コンパイル時間 1,771 ms
コンパイル使用メモリ 142,872 KB
実行使用メモリ 42,680 KB
最終ジャッジ日時 2024-11-14 05:02:16
合計ジャッジ時間 19,460 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 299 ms
42,508 KB
testcase_01 AC 307 ms
42,476 KB
testcase_02 AC 301 ms
42,492 KB
testcase_03 AC 321 ms
42,496 KB
testcase_04 AC 299 ms
42,476 KB
testcase_05 AC 330 ms
42,548 KB
testcase_06 AC 323 ms
42,544 KB
testcase_07 AC 326 ms
42,520 KB
testcase_08 AC 316 ms
42,560 KB
testcase_09 AC 308 ms
42,548 KB
testcase_10 AC 331 ms
42,400 KB
testcase_11 AC 308 ms
42,480 KB
testcase_12 AC 316 ms
42,524 KB
testcase_13 AC 308 ms
42,444 KB
testcase_14 AC 314 ms
42,504 KB
testcase_15 AC 329 ms
42,512 KB
testcase_16 AC 308 ms
42,564 KB
testcase_17 AC 330 ms
42,680 KB
testcase_18 AC 302 ms
42,476 KB
testcase_19 AC 300 ms
42,508 KB
testcase_20 AC 287 ms
42,468 KB
testcase_21 AC 292 ms
42,556 KB
testcase_22 AC 293 ms
42,508 KB
testcase_23 AC 288 ms
42,552 KB
testcase_24 AC 294 ms
42,648 KB
testcase_25 AC 284 ms
42,560 KB
testcase_26 AC 287 ms
42,492 KB
testcase_27 AC 288 ms
42,480 KB
testcase_28 AC 291 ms
42,492 KB
testcase_29 AC 292 ms
42,532 KB
testcase_30 AC 334 ms
42,560 KB
testcase_31 AC 320 ms
42,596 KB
testcase_32 AC 318 ms
42,536 KB
testcase_33 AC 328 ms
42,568 KB
testcase_34 AC 318 ms
42,524 KB
testcase_35 AC 321 ms
42,476 KB
testcase_36 AC 325 ms
42,488 KB
testcase_37 AC 330 ms
42,572 KB
testcase_38 AC 319 ms
42,552 KB
testcase_39 AC 339 ms
42,528 KB
testcase_40 AC 325 ms
42,532 KB
testcase_41 AC 327 ms
42,596 KB
testcase_42 AC 327 ms
42,576 KB
testcase_43 AC 329 ms
42,476 KB
testcase_44 AC 329 ms
42,640 KB
testcase_45 AC 326 ms
42,580 KB
testcase_46 AC 322 ms
42,516 KB
testcase_47 AC 321 ms
42,480 KB
testcase_48 AC 325 ms
42,488 KB
testcase_49 AC 311 ms
42,524 KB
testcase_50 AC 288 ms
42,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
#define popcountll __builtin_popcountll
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
const int MAX=10000010;
int p[MAX];
void sieve(){
	for(int i=2; i<MAX; i++){
		if(p[i]==0){
			for(int j=(i<<1); j<MAX; j+=i) p[j]=i;
		}
	}
}
void dfs(int k, int x, int y, vector<P> v, vector<ll> &w){
	if(k==v.size()){
		if(x>1 && x%2==1){
        	w.push_back(x);
        }
		return;
	}
	ll q=1;
	for(int i=0; i<=v[k].second; i++){
		dfs(k+1, x*q, y, v, w);
		q*=v[k].first;
	}
}
vector<ll> divisor(ll y){
	vector<ll> w;
	ll y1=y;
	map<int, int> f;
	while(p[y]>0){
		f[p[y]]++;
		y/=p[y];
	}
	f[y]++;
	vector<P> v;
	for(auto p:f) v.push_back(p);
	dfs(0, 1, y1, v, w);
	return w;
}
const ll M=1e8;
ll solve(ll x, ll y){
	if(x*2==y) return 0;
	if(x*2>y) x=y-x;
	ll ans=M/y;
	auto v=divisor(y);
	for(auto b:v){
		ll a1=(b-1)*((b+1)/2)*(y/b);
		if(a1%x==0 && a1/x>b && a1/x<=M) ans++;
	}
	return ans;
}
int main()
{
	int s; cin>>s;
	sieve();
	while(s--){
		ll x, y; cin>>x>>y;
    	cout<<solve(x, y)<<endl;
	}
	return 0;
}
0