結果

問題 No.573 a^2[i] = a[i]
ユーザー %20%20
提出日時 2017-10-06 23:14:36
言語 Perl
(5.38.2)
結果
TLE  
実行時間 -
コード長 261 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 13,632 KB
最終ジャッジ日時 2024-11-17 01:56:56
合計ジャッジ時間 43,256 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
10,496 KB
testcase_01 AC 12 ms
9,888 KB
testcase_02 AC 14 ms
7,280 KB
testcase_03 AC 17 ms
8,448 KB
testcase_04 AC 19 ms
8,864 KB
testcase_05 AC 21 ms
7,080 KB
testcase_06 AC 26 ms
8,576 KB
testcase_07 AC 29 ms
6,784 KB
testcase_08 AC 31 ms
10,496 KB
testcase_09 AC 32 ms
10,624 KB
testcase_10 AC 36 ms
8,920 KB
testcase_11 AC 38 ms
7,348 KB
testcase_12 AC 41 ms
6,912 KB
testcase_13 AC 45 ms
8,900 KB
testcase_14 AC 45 ms
7,452 KB
testcase_15 AC 49 ms
10,020 KB
testcase_16 AC 51 ms
8,576 KB
testcase_17 AC 54 ms
6,784 KB
testcase_18 AC 58 ms
10,016 KB
testcase_19 AC 61 ms
7,452 KB
testcase_20 AC 87 ms
7,348 KB
testcase_21 AC 114 ms
10,496 KB
testcase_22 AC 142 ms
6,016 KB
testcase_23 AC 170 ms
10,880 KB
testcase_24 AC 216 ms
9,616 KB
testcase_25 AC 224 ms
7,532 KB
testcase_26 AC 249 ms
6,912 KB
testcase_27 AC 295 ms
11,392 KB
testcase_28 AC 302 ms
8,056 KB
testcase_29 AC 317 ms
6,824 KB
testcase_30 AC 316 ms
6,784 KB
testcase_31 AC 328 ms
6,816 KB
testcase_32 AC 636 ms
6,816 KB
testcase_33 AC 1,414 ms
5,248 KB
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
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 -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

# Σ[k=1..N]{ C(N,k) * k^(N-k) }
$N=<>;
$m=1e9+7;
@f=1;
$f[$_]=$f[$_-1]*$_%$m for 1..$N;
$i[$N]=`dc -e'$f[$N] $m 2-$m|n'`;
$i[$_]=$i[$_+1]*($_+1)%$m for reverse 0..$N-1;
for$k(1..$N){
	($x+=$f[$N]*$i[$k]%$m*$i[$N-$k]%$m*`dc -e'$k $N $k-$m|n'`%$m)%=$m
}
print$x
0