結果

問題 No.1200 お菓子配り-3
ユーザー tailstails
提出日時 2020-08-28 22:32:23
言語 cLay
(20240714-1)
結果
AC  
実行時間 75 ms / 4,000 ms
コード長 457 bytes
コンパイル時間 6,900 ms
コンパイル使用メモリ 221,008 KB
実行使用メモリ 8,704 KB
最終ジャッジ日時 2024-07-05 13:56:05
合計ジャッジ時間 8,791 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
8,320 KB
testcase_01 AC 9 ms
8,320 KB
testcase_02 AC 9 ms
8,448 KB
testcase_03 AC 9 ms
8,448 KB
testcase_04 AC 9 ms
8,448 KB
testcase_05 AC 9 ms
8,448 KB
testcase_06 AC 8 ms
8,320 KB
testcase_07 AC 9 ms
8,192 KB
testcase_08 AC 9 ms
8,192 KB
testcase_09 AC 10 ms
8,448 KB
testcase_10 AC 10 ms
8,448 KB
testcase_11 AC 9 ms
8,448 KB
testcase_12 AC 11 ms
8,448 KB
testcase_13 AC 11 ms
8,448 KB
testcase_14 AC 12 ms
8,448 KB
testcase_15 AC 11 ms
8,448 KB
testcase_16 AC 11 ms
8,320 KB
testcase_17 AC 17 ms
8,448 KB
testcase_18 AC 21 ms
8,576 KB
testcase_19 AC 12 ms
8,448 KB
testcase_20 AC 32 ms
8,576 KB
testcase_21 AC 33 ms
8,448 KB
testcase_22 AC 36 ms
8,576 KB
testcase_23 AC 32 ms
8,704 KB
testcase_24 AC 32 ms
8,704 KB
testcase_25 AC 32 ms
8,704 KB
testcase_26 AC 32 ms
8,576 KB
testcase_27 AC 9 ms
8,448 KB
testcase_28 AC 75 ms
8,576 KB
testcase_29 AC 35 ms
8,576 KB
testcase_30 AC 36 ms
8,704 KB
testcase_31 AC 9 ms
8,320 KB
testcase_32 AC 9 ms
8,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll s,x,y,z;
ll da[1000],dn;
{
	rd(s);
	rep(s){
		z=0;
		rd(x,y);
		dn=Divisor(x+y,da);
		rep[da](a,dn){
			if(a==2){
				if(x==y){
					// x+y == 2(b+c)
					if((x+y)%2==0){
						z+=(x+y)/2-1;
					}
				}
			}
			if(a>2){
				if((x-y)%(a-2)==0){
					ll btasuc = (x+y)/a;
					ll bhikuc = (x-y)/(a-2);
					if((btasuc+bhikuc)%2==0){
						ll b=(btasuc+bhikuc)/2;
						ll c=(btasuc-bhikuc)/2;
					    if(b>0&&c>0)++z;
					}
				}
			}
		}
		wt(z);
	}
}
0