結果

問題 No.1532 Different Products
ユーザー tailstails
提出日時 2021-06-11 18:01:39
言語 C
(gcc 12.3.0)
結果
AC  
実行時間 414 ms / 4,000 ms
コード長 842 bytes
コンパイル時間 425 ms
コンパイル使用メモリ 33,408 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-14 14:32:46
合計ジャッジ時間 16,259 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 65 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 3 ms
6,820 KB
testcase_09 AC 33 ms
6,816 KB
testcase_10 AC 89 ms
6,820 KB
testcase_11 AC 72 ms
6,816 KB
testcase_12 AC 203 ms
6,816 KB
testcase_13 AC 141 ms
6,816 KB
testcase_14 AC 338 ms
6,816 KB
testcase_15 AC 32 ms
6,816 KB
testcase_16 AC 75 ms
6,816 KB
testcase_17 AC 85 ms
6,816 KB
testcase_18 AC 75 ms
6,820 KB
testcase_19 AC 195 ms
6,816 KB
testcase_20 AC 346 ms
6,816 KB
testcase_21 AC 109 ms
6,820 KB
testcase_22 AC 132 ms
6,816 KB
testcase_23 AC 98 ms
6,816 KB
testcase_24 AC 315 ms
6,816 KB
testcase_25 AC 176 ms
6,820 KB
testcase_26 AC 24 ms
6,816 KB
testcase_27 AC 148 ms
6,820 KB
testcase_28 AC 115 ms
6,816 KB
testcase_29 AC 90 ms
6,816 KB
testcase_30 AC 200 ms
6,816 KB
testcase_31 AC 203 ms
6,820 KB
testcase_32 AC 237 ms
6,816 KB
testcase_33 AC 182 ms
6,816 KB
testcase_34 AC 295 ms
6,816 KB
testcase_35 AC 234 ms
6,816 KB
testcase_36 AC 291 ms
6,816 KB
testcase_37 AC 46 ms
6,816 KB
testcase_38 AC 307 ms
6,816 KB
testcase_39 AC 274 ms
6,820 KB
testcase_40 AC 279 ms
6,820 KB
testcase_41 AC 400 ms
6,816 KB
testcase_42 AC 354 ms
6,816 KB
testcase_43 AC 371 ms
6,816 KB
testcase_44 AC 407 ms
6,816 KB
testcase_45 AC 408 ms
6,816 KB
testcase_46 AC 394 ms
6,816 KB
testcase_47 AC 412 ms
6,816 KB
testcase_48 AC 407 ms
6,816 KB
testcase_49 AC 411 ms
6,820 KB
testcase_50 AC 406 ms
6,816 KB
testcase_51 AC 410 ms
6,816 KB
testcase_52 AC 403 ms
6,816 KB
testcase_53 AC 413 ms
6,816 KB
testcase_54 AC 404 ms
6,820 KB
testcase_55 AC 409 ms
6,816 KB
testcase_56 AC 396 ms
6,816 KB
testcase_57 AC 399 ms
6,816 KB
testcase_58 AC 404 ms
6,816 KB
testcase_59 AC 383 ms
6,820 KB
testcase_60 AC 414 ms
6,816 KB
testcase_61 AC 1 ms
6,820 KB
testcase_62 AC 1 ms
6,816 KB
testcase_63 AC 410 ms
6,816 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:52:9: warning: implicit declaration of function 'write' [-Wimplicit-function-declaration]
   52 |         write(1,wp,buf+sizeof buf-wp);
      |         ^~~~~
main.c:53:9: warning: implicit declaration of function '_exit'; did you mean '_Exit'? [-Wimplicit-function-declaration]
   53 |         _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 e=min(k/l,i*k+i-1+1);
			for(long j=1;j<e;++j){
				dp2[j/i]+=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;
	{
		for(long j=1;j<k/l;++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