結果

問題 No.1330 Multiply or Divide
ユーザー tailstails
提出日時 2021-01-08 22:46:06
言語 cLay
(20240714-1)
結果
WA  
実行時間 -
コード長 325 bytes
コンパイル時間 1,905 ms
コンパイル使用メモリ 172,564 KB
実行使用メモリ 7,680 KB
最終ジャッジ日時 2024-07-05 14:56:39
合計ジャッジ時間 3,715 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 8 ms
6,016 KB
testcase_02 WA -
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 11 ms
6,912 KB
testcase_07 AC 96 ms
7,552 KB
testcase_08 AC 13 ms
7,552 KB
testcase_09 AC 17 ms
7,552 KB
testcase_10 AC 14 ms
7,424 KB
testcase_11 AC 12 ms
7,552 KB
testcase_12 AC 14 ms
7,680 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 9 ms
5,888 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1 ms
5,376 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 1 ms
5,376 KB
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 18 ms
6,912 KB
testcase_45 AC 21 ms
7,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll a[2d5],e[2d5],d[2d5];
{
	ll@n,@m,@p,b=0,c=0;
	rd(a(n));
	rep(i,n){
		b>?=a[i];
		while(a[i]%p<1){
			a[i]/=p;
			++e[i];
		}
		c>?=a[i];
	}
	if(b>m){
		wt(0);
		exit(0);
	}
	if(c<2){
		wt(-1);
		exit(0);
	}
	d[0]=1;
	rep(i,2d5){
		if(d[i]*b>m){
			wt(i+1);
			exit(0);
		}
		rep(j,n){
			d[i+e[j]+1]>?=d[i]*a[j];
		}
	}
}
0