結果

問題 No.2954 Calculation of Exponentiation
ユーザー tailstails
提出日時 2024-11-08 21:51:51
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 306 bytes
コンパイル時間 7,894 ms
コンパイル使用メモリ 219,524 KB
実行使用メモリ 8,576 KB
最終ジャッジ日時 2024-11-08 21:52:02
合計ジャッジ時間 9,075 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

ll@(ai,af,bi,bf);
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;
	}
	if(x<0){
		wt("No");
		exit(0);
	}
	if(x*(bi*1d4+bf)%1d4){
		wt("No");
		exit(0);
	}
}
wt("Yes");
0