結果

問題 No.2954 Calculation of Exponentiation
ユーザー tailstails
提出日時 2024-11-08 21:54:57
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 435 bytes
コンパイル時間 8,814 ms
コンパイル使用メモリ 219,636 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-11-08 21:55:09
合計ジャッジ時間 9,854 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

ll@(ai,af,bi,bf);
ll b=bi*1d4+bf*(bi<0?-1:1);
ll afn,afa[64],afs[64];
afn=Factor(ai*1d4+af,afa,afs);
bool saw2=false,saw5=false;
rep(i,afn){
	ll x=afs[i];
	if(afa[i]==2){
		saw2=true;
		x-=4;
	}
	if(afa[i]==5){
		saw5=true;
		x-=4;
	}
	x*=b;
	if(x<0){
		wt("No");
		exit(0);
	}
	if(x%1d4){
		wt("No");
		exit(0);
	}
}
if(!saw2||!saw5){
	ll x=-4*b;
	if(x<0){
		wt("No");
		exit(0);
	}
	if(x%1d4){
		wt("No");
		exit(0);
	}
}
wt("Yes");
0