結果
問題 | No.1200 お菓子配り-3 |
ユーザー | umezo |
提出日時 | 2020-08-28 23:01:35 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 728 bytes |
コンパイル時間 | 2,491 ms |
コンパイル使用メモリ | 204,452 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-14 16:44:58 |
合計ジャッジ時間 | 28,009 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | AC | 4 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | AC | 5 ms
6,820 KB |
testcase_06 | AC | 4 ms
6,816 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
6,820 KB |
testcase_28 | AC | 3,206 ms
6,820 KB |
testcase_29 | AC | 2,354 ms
6,820 KB |
testcase_30 | AC | 2,356 ms
6,816 KB |
testcase_31 | AC | 2 ms
6,816 KB |
testcase_32 | AC | 2 ms
6,816 KB |
ソースコード
#define rep(i, n) for (int i = 0; i < (int)(n); i++) #define ALL(v) v.begin(), v.end() typedef long long ll; #include <bits/stdc++.h> using namespace std; int main(){ int T; cin>>T; ll x,y; while(T--){ cin>>x>>y; ll s=x+y,t=x-y; vector<ll> A; for(int i=2;i*i<=s;i++){ if(s%i==0){ A.push_back(i); if(i*i!=s) A.push_back(s/i); } } ll cnt=0; for(auto c:A){ if(c==2){ if(x!=y) continue; cnt+=x-1; continue; } if(t%(c-2)!=0) continue; ll d=s/c; ll e=t/(c-2); if(d%2!=e%2) continue; if(d+e<=0 || d-e<=0) continue; cnt++; } cout<<cnt<<endl; A.clear(); } return 0; }