結果

問題 No.1532 Different Products
ユーザー tailstails
提出日時 2021-06-04 21:43:54
言語 Perl
(5.38.2)
結果
TLE  
実行時間 -
コード長 174 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 55,936 KB
最終ジャッジ日時 2024-11-19 13:24:40
合計ジャッジ時間 190,447 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
13,768 KB
testcase_01 AC 844 ms
21,152 KB
testcase_02 AC 8 ms
13,636 KB
testcase_03 AC 8 ms
34,592 KB
testcase_04 AC 8 ms
13,636 KB
testcase_05 AC 8 ms
33,444 KB
testcase_06 AC 9 ms
13,640 KB
testcase_07 AC 12 ms
13,768 KB
testcase_08 AC 20 ms
13,636 KB
testcase_09 AC 227 ms
17,952 KB
testcase_10 AC 1,146 ms
23,716 KB
testcase_11 AC 801 ms
22,432 KB
testcase_12 AC 3,441 ms
31,400 KB
testcase_13 AC 1,636 ms
29,096 KB
testcase_14 TLE -
testcase_15 AC 31 ms
14,372 KB
testcase_16 AC 987 ms
20,900 KB
testcase_17 AC 854 ms
23,200 KB
testcase_18 AC 582 ms
22,052 KB
testcase_19 AC 3,757 ms
53,632 KB
testcase_20 TLE -
testcase_21 AC 1,467 ms
23,208 KB
testcase_22 AC 1,926 ms
28,324 KB
testcase_23 AC 840 ms
24,100 KB
testcase_24 TLE -
testcase_25 AC 2,705 ms
51,328 KB
testcase_26 AC 241 ms
38,784 KB
testcase_27 AC 2,090 ms
25,120 KB
testcase_28 AC 1,594 ms
24,224 KB
testcase_29 AC 1,352 ms
43,136 KB
testcase_30 AC 3,131 ms
29,088 KB
testcase_31 AC 3,079 ms
51,072 KB
testcase_32 AC 3,731 ms
31,144 KB
testcase_33 AC 2,819 ms
28,196 KB
testcase_34 TLE -
testcase_35 AC 3,733 ms
54,016 KB
testcase_36 TLE -
testcase_37 AC 809 ms
17,568 KB
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 AC 7 ms
6,820 KB
testcase_62 AC 8 ms
6,820 KB
testcase_63 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

($n,$k)=glob<>;

$h{int$k}=1;

for$i(reverse 1..$n){
	%d=%h;
	for(keys%h){
		$a=int$_/$i;
		$d{$a}+=$h{$_} if$a;
	}
	%h=%d;
}

$t=0;
for(keys%h){
	$t+=$d{$_};
}

print $t-1;
0