結果
問題 | No.1200 お菓子配り-3 |
ユーザー | beet |
提出日時 | 2020-08-30 12:55:04 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,923 ms / 4,000 ms |
コード長 | 1,496 bytes |
コンパイル時間 | 2,264 ms |
コンパイル使用メモリ | 212,972 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-20 23:09:54 |
合計ジャッジ時間 | 17,619 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 4 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 3 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 15 ms
5,248 KB |
testcase_08 | AC | 14 ms
5,248 KB |
testcase_09 | AC | 13 ms
5,248 KB |
testcase_10 | AC | 13 ms
5,248 KB |
testcase_11 | AC | 12 ms
5,248 KB |
testcase_12 | AC | 113 ms
5,248 KB |
testcase_13 | AC | 115 ms
5,248 KB |
testcase_14 | AC | 115 ms
5,248 KB |
testcase_15 | AC | 117 ms
5,248 KB |
testcase_16 | AC | 113 ms
5,248 KB |
testcase_17 | AC | 404 ms
5,248 KB |
testcase_18 | AC | 583 ms
5,248 KB |
testcase_19 | AC | 133 ms
5,248 KB |
testcase_20 | AC | 1,123 ms
5,248 KB |
testcase_21 | AC | 1,124 ms
5,248 KB |
testcase_22 | AC | 1,325 ms
5,248 KB |
testcase_23 | AC | 1,124 ms
5,248 KB |
testcase_24 | AC | 1,103 ms
5,248 KB |
testcase_25 | AC | 1,108 ms
5,248 KB |
testcase_26 | AC | 1,116 ms
5,248 KB |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | AC | 694 ms
5,248 KB |
testcase_29 | AC | 1,923 ms
5,248 KB |
testcase_30 | AC | 1,918 ms
5,248 KB |
testcase_31 | AC | 2 ms
5,248 KB |
testcase_32 | AC | 1 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using Int = long long; const char newl = '\n'; template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;} template<typename T> void drop(const T &x){cout<<x<<endl;exit(0);} template<typename T=Int> vector<T> read(size_t n){ vector<T> ts(n); for(size_t i=0;i<n;i++) cin>>ts[i]; return ts; } //INSERT ABOVE HERE using P = pair<Int, Int>; map<P, Int> memo; signed solve(){ Int x,y; cin>>x>>y; if(x>y) swap(x,y); if(memo.count(P(x,y))){ cout<<memo[P(x,y)]<<newl; return 0; } Int &res=memo[P(x,y)]; res=0; if(x==y){ vector<Int> cand; for(Int i=1;i*i<=x;i++){ if(x%i) continue; cand.emplace_back(i); if(i*i!=x) cand.emplace_back(x/i); } // 1 < a for(Int c:cand){ Int a=x/c-1; Int b=c; if(1<a and 0<b and 0<c and a*b+c==x and a*c+b==y) res++; } // 1 == a res+=x-1; cout<<res<<newl; return 0; } Int d=y-x; vector<Int> cand; for(Int i=1;i*i<=d;i++){ if(d%i) continue; cand.emplace_back(i); if(i*i!=d) cand.emplace_back(d/i); } for(Int t:cand){ Int a=t+1; Int s=d/t; Int b=(x-s)/(a+1); Int c=s+b; if(0<a and 0<b and 0<c and a*b+c==x and a*c+b==y) res++; } cout<<res<<newl; return 0; } signed main(){ cin.tie(0); ios::sync_with_stdio(0); Int T; cin>>T; while(T--) solve(); return 0; }