結果

問題 No.1532 Different Products
ユーザー tailstails
提出日時 2021-06-11 18:24:38
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 245 ms / 4,000 ms
コード長 899 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 33,792 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-14 15:21:41
合計ジャッジ時間 10,744 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 39 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 20 ms
6,816 KB
testcase_10 AC 52 ms
6,816 KB
testcase_11 AC 42 ms
6,816 KB
testcase_12 AC 119 ms
6,820 KB
testcase_13 AC 82 ms
6,820 KB
testcase_14 AC 201 ms
6,820 KB
testcase_15 AC 19 ms
6,816 KB
testcase_16 AC 44 ms
6,816 KB
testcase_17 AC 49 ms
6,820 KB
testcase_18 AC 43 ms
6,816 KB
testcase_19 AC 115 ms
6,816 KB
testcase_20 AC 203 ms
6,816 KB
testcase_21 AC 65 ms
6,816 KB
testcase_22 AC 78 ms
6,816 KB
testcase_23 AC 58 ms
6,820 KB
testcase_24 AC 187 ms
6,820 KB
testcase_25 AC 102 ms
6,816 KB
testcase_26 AC 14 ms
6,820 KB
testcase_27 AC 87 ms
6,816 KB
testcase_28 AC 69 ms
6,816 KB
testcase_29 AC 53 ms
6,820 KB
testcase_30 AC 118 ms
6,816 KB
testcase_31 AC 122 ms
6,816 KB
testcase_32 AC 140 ms
6,820 KB
testcase_33 AC 108 ms
6,820 KB
testcase_34 AC 175 ms
6,820 KB
testcase_35 AC 139 ms
6,820 KB
testcase_36 AC 170 ms
6,820 KB
testcase_37 AC 27 ms
6,816 KB
testcase_38 AC 182 ms
6,820 KB
testcase_39 AC 161 ms
6,820 KB
testcase_40 AC 165 ms
6,816 KB
testcase_41 AC 237 ms
6,816 KB
testcase_42 AC 211 ms
6,816 KB
testcase_43 AC 220 ms
6,816 KB
testcase_44 AC 240 ms
6,816 KB
testcase_45 AC 245 ms
6,820 KB
testcase_46 AC 235 ms
6,816 KB
testcase_47 AC 245 ms
6,816 KB
testcase_48 AC 244 ms
6,820 KB
testcase_49 AC 243 ms
6,816 KB
testcase_50 AC 240 ms
6,816 KB
testcase_51 AC 243 ms
6,820 KB
testcase_52 AC 238 ms
6,820 KB
testcase_53 AC 244 ms
6,820 KB
testcase_54 AC 240 ms
6,820 KB
testcase_55 AC 242 ms
6,820 KB
testcase_56 AC 234 ms
6,816 KB
testcase_57 AC 236 ms
6,816 KB
testcase_58 AC 241 ms
6,816 KB
testcase_59 AC 227 ms
6,820 KB
testcase_60 AC 244 ms
6,816 KB
testcase_61 AC 1 ms
6,820 KB
testcase_62 AC 1 ms
6,816 KB
testcase_63 AC 243 ms
6,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c:12:1: warning: return type defaults to 'int' [-Wimplicit-int]
   12 | main(){
      | ^~~~
main.c: In function 'main':
main.c:14:9: warning: implicit declaration of function 'read'; did you mean 'rd'? [-Wimplicit-function-declaration]
   14 |         read(0,buf,sizeof buf);
      |         ^~~~
      |         rd
main.c:19:24: warning: implicit declaration of function 'sqrt' [-Wimplicit-function-declaration]
   19 |         long l=k/(long)sqrt(k);
      |                        ^~~~
main.c:1:1: note: include '<math.h>' or provide a declaration of 'sqrt'
  +++ |+#include <math.h>
    1 | #pragma GCC optimize("Ofast")
main.c:19:24: warning: incompatible implicit declaration of built-in function 'sqrt' [-Wbuiltin-declaration-mismatch]
   19 |         long l=k/(long)sqrt(k);
      |                        ^~~~
main.c:19:24: note: include '<math.h>' or provide a declaration of 'sqrt'
main.c:54:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration]
   54 |         write(1,wp,buf+sizeof buf-wp);
      |         ^~~~~
main.c:55:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration]
   55 |         _exit(0);
      |         ^~~~~
      |         _Exit

ソースコード

diff #

#pragma GCC optimize("Ofast")
#pragma GCC target("avx2")

#define rd(v) long v=0;{int _c;while(_c=*rp++-48,_c>=0)v=v*10+_c;}
#define wt(v) {long _z=v;do*--wp=_z%10+48;while(_z/=10);}

#define min(a,b) (a<=b?a:b)
#define max(a,b) (a>=b?a:b)

long dp1[100002],dp2[100002];

main(){
	char buf[64];
	read(0,buf,sizeof buf);
	char*rp=buf;

	rd(n);
	rd(k);
	long l=k/(long)sqrt(k);

	dp1[1]=1;
	for(long i=n;i>=2;--i){
		{
			long jmod=0,jdiv=0;
			long e=min(k/l,i*k+i-1+1);
			for(long j=1;j<e;++j){
				dp2[jdiv+=++jmod==i?jmod=0,1:0]+=dp2[j];
			}
		}
		{
			long j=min(l,k/i);
			long e=l/i;
			for(;j>e;--j){
				dp2[k/(j*i)]+=dp1[j];
			}
			for(;j>0;--j){
				dp1[j*i]+=dp1[j];
			}
		}
	}
	long res=0;
	{
		int e=k/l;
		for(long j=1;j<e;++j){
			res+=dp2[j];
		}
		for(long j=l;j>0;--j){
			res+=dp1[j];
		}
	}

	char*wp=buf+sizeof buf;
	wt(res*2-1);
	write(1,wp,buf+sizeof buf-wp);
	_exit(0);
}
0