結果
問題 | No.1203 お菓子ゲーム |
ユーザー | PCTprobability |
提出日時 | 2020-07-23 19:40:22 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,466 bytes |
コンパイル時間 | 944 ms |
コンパイル使用メモリ | 82,828 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-07 13:25:16 |
合計ジャッジ時間 | 10,797 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 6 WA * 45 |
ソースコード
#include <iostream> #include <random> using namespace std; using ll = __int128; std::ostream &operator<<(std::ostream &dest, __int128_t value) { std::ostream::sentry s(dest); if (s) { __uint128_t tmp = value < 0 ? -value : value; char buffer[128]; char *d = std::end(buffer); do { --d; *d = "0123456789"[tmp % 10]; tmp /= 10; } while (tmp != 0); if (value < 0) { --d; *d = '-'; } int len = std::end(buffer) - d; if (dest.rdbuf()->sputn(d, len) != len) { dest.setstate(std::ios_base::badbit); } } return dest; } __int128 p(string &s) { __int128 ret = 0; for (int i = 0; i < s.length(); i++) if ('0' <= s[i] && s[i] <= '9') ret = 10 * ret + s[i] - '0'; return ret; } ll gcds(ll a,ll b) { if (a%b == 0) { return(b); } else { return(gcds(b, a%b)); } } ll si(ll a,ll b){ ll r=gcds(a,b); return a/r; } ll bo(ll a,ll b){ ll r=gcds(a,b); return b/r; } int main(){ string o; cin>>o; ll s=p(o); ll a,b; ll ans; string x,y; for(ll i=0;i<s;i++){ cin>>x>>y; a=p(x); b=p(y); if(2*a>b){ a=b-a; } ans=100000000/b; ll r; for(ll i=3;i*i<=b;i=i+2){ if(b%i==0){ if((b*(i*i-1))%(2*a*i)==0&&(b*(i*i-1))/(2*a*i)>i){ ans++; } r=b/i; if(r!=i){ if((b*(r*r-1))%(2*a)==0&&(b*(r*r-1))/(2*a)>r){ ans++; } } } } cout<<ans<<endl; } }