結果

問題 No.473 和と積の和
ユーザー YamyukiYamyuki
提出日時 2016-12-24 15:16:06
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 609 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 21,504 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-09 13:45:36
合計ジャッジ時間 1,797 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 0 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1 ms
5,376 KB
testcase_08 WA -
testcase_09 AC 0 ms
5,376 KB
testcase_10 AC 0 ms
5,376 KB
testcase_11 AC 0 ms
5,376 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
testcase_34 AC 29 ms
5,376 KB
testcase_35 AC 28 ms
5,376 KB
testcase_36 AC 2 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 25 ms
5,376 KB
testcase_39 AC 23 ms
5,376 KB
testcase_40 AC 25 ms
5,376 KB
testcase_41 AC 0 ms
5,376 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:30:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   30 |         scanf("%d %ld",&n,&x);
      |         ^~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>

long x,num,list[30];
int n,c;
long d[100];

void check(int i,int j){
	long s;
	if(i==c){
		for(j=0;j<n;j++){
			if(d[j]<2) return;
		}
		num++;
		return;
	}
	if(i==0 || list[i]!=list[i-1]){
		j=0;
	}
	for(;j<n;j++){
		if(j==0 || d[j]!=d[j-1]){
			s=d[j];
			d[j]*=list[i];
			check(i+1,j);
			d[j]=s;
		}
	}
}
int main(){
	long i;
	scanf("%d %ld",&n,&x);
	x++;
	for(i=2;i*i<=x;i++){
		while(x%i==0){
			list[c]=i;
			c++;
			x/=i;
		}
	}
	if(x!=1){
		printf("%ld\n",x);
		list[c]=x;
		c++;
	}
	if(c>=n){
		for(i=0;i<n;i++){
			d[i]=1;
		}
		check(0,0);
	}
	printf("%ld\n",num);
	return 0;
}
0