結果

問題 No.849 yuki国の分割統治
ユーザー tailstails
提出日時 2023-03-14 22:10:07
言語 cLay
(20240714-1)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 2,263 ms
コンパイル使用メモリ 182,096 KB
実行使用メモリ 9,600 KB
最終ジャッジ日時 2024-09-18 08:27:52
合計ジャッジ時間 4,928 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 17 ms
6,944 KB
testcase_08 AC 28 ms
6,940 KB
testcase_09 AC 25 ms
6,940 KB
testcase_10 AC 21 ms
6,940 KB
testcase_11 AC 23 ms
6,944 KB
testcase_12 AC 18 ms
6,944 KB
testcase_13 AC 26 ms
6,940 KB
testcase_14 AC 24 ms
6,940 KB
testcase_15 AC 26 ms
6,940 KB
testcase_16 AC 36 ms
8,576 KB
testcase_17 AC 14 ms
6,944 KB
testcase_18 AC 38 ms
8,832 KB
testcase_19 AC 23 ms
6,944 KB
testcase_20 AC 34 ms
7,296 KB
testcase_21 AC 8 ms
6,940 KB
testcase_22 AC 35 ms
7,936 KB
testcase_23 AC 32 ms
7,424 KB
testcase_24 AC 21 ms
6,940 KB
testcase_25 AC 42 ms
9,600 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@a,@b,@c,@d,@n,e;
map<pair<ll,ll>,ll>h;
if(e=abs(a*d-b*c)){
	rep(n){
		ll@x,@y;
		h[{(d*x-c*y)%%e,(a*y-b*x)%%e}]=0;
	}
}else{
	(a,b)/=(a+b)/gcd(a+b,c+d);
	rep(n){
		ll@x,@y;
		h[{(x+y)%(a+b),a*y-b*x}]=0;
	}
}
wt(n=h.size());
0