結果

問題 No.1532 Different Products
ユーザー tailstails
提出日時 2021-06-04 21:54:25
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,301 ms / 4,000 ms
コード長 337 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 49,280 KB
実行使用メモリ 14,080 KB
最終ジャッジ日時 2024-11-19 14:03:39
合計ジャッジ時間 40,841 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 147 ms
6,144 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 4 ms
5,248 KB
testcase_09 AC 42 ms
5,248 KB
testcase_10 AC 194 ms
7,296 KB
testcase_11 AC 135 ms
6,784 KB
testcase_12 AC 521 ms
10,112 KB
testcase_13 AC 228 ms
9,088 KB
testcase_14 AC 851 ms
12,288 KB
testcase_15 AC 7 ms
5,248 KB
testcase_16 AC 172 ms
6,144 KB
testcase_17 AC 136 ms
7,040 KB
testcase_18 AC 93 ms
6,656 KB
testcase_19 AC 492 ms
10,240 KB
testcase_20 AC 975 ms
12,672 KB
testcase_21 AC 254 ms
7,040 KB
testcase_22 AC 265 ms
8,576 KB
testcase_23 AC 126 ms
7,424 KB
testcase_24 AC 935 ms
12,032 KB
testcase_25 AC 435 ms
9,216 KB
testcase_26 AC 46 ms
5,248 KB
testcase_27 AC 351 ms
7,936 KB
testcase_28 AC 261 ms
7,680 KB
testcase_29 AC 237 ms
6,144 KB
testcase_30 AC 478 ms
9,088 KB
testcase_31 AC 494 ms
9,216 KB
testcase_32 AC 604 ms
9,984 KB
testcase_33 AC 446 ms
8,704 KB
testcase_34 AC 830 ms
11,264 KB
testcase_35 AC 598 ms
9,856 KB
testcase_36 AC 746 ms
11,136 KB
testcase_37 AC 143 ms
5,248 KB
testcase_38 AC 879 ms
11,648 KB
testcase_39 AC 634 ms
10,752 KB
testcase_40 AC 727 ms
10,880 KB
testcase_41 AC 1,215 ms
13,696 KB
testcase_42 AC 1,032 ms
12,544 KB
testcase_43 AC 1,119 ms
13,184 KB
testcase_44 AC 1,240 ms
13,696 KB
testcase_45 AC 1,233 ms
13,696 KB
testcase_46 AC 1,142 ms
13,568 KB
testcase_47 AC 1,301 ms
13,824 KB
testcase_48 AC 1,253 ms
13,824 KB
testcase_49 AC 1,232 ms
14,080 KB
testcase_50 AC 1,222 ms
13,696 KB
testcase_51 AC 1,284 ms
13,952 KB
testcase_52 AC 1,239 ms
13,824 KB
testcase_53 AC 1,284 ms
14,080 KB
testcase_54 AC 1,069 ms
13,952 KB
testcase_55 AC 1,216 ms
13,952 KB
testcase_56 AC 1,049 ms
13,440 KB
testcase_57 AC 1,209 ms
13,568 KB
testcase_58 AC 1,157 ms
13,824 KB
testcase_59 AC 1,127 ms
13,312 KB
testcase_60 AC 1,211 ms
14,080 KB
testcase_61 AC 1 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 AC 1,301 ms
14,080 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:6:19: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |         std::scanf("%ld",&n);
      |         ~~~~~~~~~~^~~~~~~~~~
main.cpp:7:19: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    7 |         std::scanf("%ld",&k);
      |         ~~~~~~~~~~^~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <map>

int main(){
	long n,k;
	std::scanf("%ld",&n);
	std::scanf("%ld",&k);
	std::map<long,long> h;
	h[k]=1;
	for(long i=n;i>=2;--i){
		std::map<long,long> d=h;
		for(auto v:h){
			long a=v.first/i;
			d[a]+=v.second;
		}
		h=d;
	}
	h[0]=0;
	long t=0;
	for(auto v:h){
		t+=v.second;
	}
	printf("%ld",t*2-1);
}
0