結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 152 ms
6,272 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 5 ms
5,376 KB
testcase_09 AC 42 ms
5,376 KB
testcase_10 AC 194 ms
7,296 KB
testcase_11 AC 135 ms
6,784 KB
testcase_12 AC 564 ms
10,112 KB
testcase_13 AC 234 ms
9,088 KB
testcase_14 AC 1,069 ms
12,416 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 169 ms
6,144 KB
testcase_17 AC 140 ms
7,040 KB
testcase_18 AC 101 ms
6,528 KB
testcase_19 AC 527 ms
10,112 KB
testcase_20 AC 1,177 ms
12,672 KB
testcase_21 AC 257 ms
7,040 KB
testcase_22 AC 269 ms
8,576 KB
testcase_23 AC 125 ms
7,424 KB
testcase_24 AC 1,003 ms
12,160 KB
testcase_25 AC 446 ms
9,216 KB
testcase_26 AC 46 ms
5,376 KB
testcase_27 AC 346 ms
8,064 KB
testcase_28 AC 275 ms
7,552 KB
testcase_29 AC 236 ms
6,144 KB
testcase_30 AC 518 ms
9,088 KB
testcase_31 AC 514 ms
9,088 KB
testcase_32 AC 635 ms
9,856 KB
testcase_33 AC 447 ms
8,576 KB
testcase_34 AC 895 ms
11,264 KB
testcase_35 AC 668 ms
9,984 KB
testcase_36 AC 802 ms
11,008 KB
testcase_37 AC 144 ms
5,376 KB
testcase_38 AC 744 ms
11,648 KB
testcase_39 AC 714 ms
10,880 KB
testcase_40 AC 695 ms
10,880 KB
testcase_41 AC 1,082 ms
13,696 KB
testcase_42 AC 910 ms
12,672 KB
testcase_43 AC 949 ms
13,184 KB
testcase_44 AC 1,110 ms
13,696 KB
testcase_45 AC 1,063 ms
13,824 KB
testcase_46 AC 1,079 ms
13,440 KB
testcase_47 AC 1,202 ms
14,080 KB
testcase_48 AC 1,155 ms
13,824 KB
testcase_49 AC 1,246 ms
13,824 KB
testcase_50 AC 1,336 ms
13,952 KB
testcase_51 AC 1,262 ms
13,952 KB
testcase_52 AC 1,168 ms
13,824 KB
testcase_53 AC 1,386 ms
13,952 KB
testcase_54 AC 1,457 ms
13,952 KB
testcase_55 AC 1,444 ms
13,824 KB
testcase_56 AC 1,326 ms
13,440 KB
testcase_57 AC 1,289 ms
13,696 KB
testcase_58 AC 1,344 ms
13,696 KB
testcase_59 AC 1,235 ms
13,312 KB
testcase_60 AC 1,467 ms
14,080 KB
testcase_61 AC 1 ms
5,376 KB
testcase_62 AC 1 ms
5,376 KB
testcase_63 AC 1,456 ms
13,824 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