結果

問題 No.573 a^2[i] = a[i]
ユーザー tailstails
提出日時 2017-10-06 23:56:38
言語 Raku
(rakudo v2024.12)
結果
TLE  
実行時間 -
コード長 141 bytes
コンパイル時間 515 ms
コンパイル使用メモリ 144,548 KB
実行使用メモリ 160,804 KB
最終ジャッジ日時 2024-11-24 14:40:50
合計ジャッジ時間 22,901 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 362 ms
143,168 KB
testcase_01 AC 366 ms
137,408 KB
testcase_02 AC 362 ms
137,540 KB
testcase_03 AC 365 ms
137,412 KB
testcase_04 AC 354 ms
137,792 KB
testcase_05 AC 368 ms
137,668 KB
testcase_06 AC 358 ms
137,412 KB
testcase_07 AC 361 ms
137,412 KB
testcase_08 AC 361 ms
137,408 KB
testcase_09 AC 372 ms
137,424 KB
testcase_10 AC 361 ms
137,676 KB
testcase_11 AC 374 ms
137,552 KB
testcase_12 AC 360 ms
137,412 KB
testcase_13 AC 375 ms
137,412 KB
testcase_14 AC 355 ms
137,540 KB
testcase_15 AC 350 ms
137,156 KB
testcase_16 AC 345 ms
137,668 KB
testcase_17 AC 356 ms
137,404 KB
testcase_18 AC 350 ms
137,808 KB
testcase_19 AC 365 ms
137,664 KB
testcase_20 AC 360 ms
137,200 KB
testcase_21 AC 358 ms
137,284 KB
testcase_22 AC 366 ms
137,412 KB
testcase_23 AC 362 ms
137,412 KB
testcase_24 AC 358 ms
137,536 KB
testcase_25 AC 356 ms
137,540 KB
testcase_26 AC 360 ms
137,664 KB
testcase_27 AC 378 ms
137,540 KB
testcase_28 AC 386 ms
137,536 KB
testcase_29 AC 401 ms
137,540 KB
testcase_30 AC 401 ms
137,540 KB
testcase_31 AC 408 ms
137,412 KB
testcase_32 AC 376 ms
137,680 KB
testcase_33 AC 391 ms
137,536 KB
testcase_34 AC 397 ms
137,412 KB
testcase_35 AC 400 ms
137,284 KB
testcase_36 AC 400 ms
137,668 KB
testcase_37 AC 406 ms
137,284 KB
testcase_38 AC 396 ms
137,412 KB
testcase_39 AC 402 ms
137,808 KB
testcase_40 AC 393 ms
137,960 KB
testcase_41 AC 406 ms
138,456 KB
testcase_42 AC 446 ms
142,556 KB
testcase_43 AC 457 ms
142,420 KB
testcase_44 AC 509 ms
142,688 KB
testcase_45 AC 632 ms
147,048 KB
testcase_46 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

my$m=10**9+7;
my$n=get;
my$c=0;
my$d=1;
for 1..$n -> $i {
	$d=$d*($n-$i+1)*$i.expmod(-1,$m)%$m;
	$c=($c+$i.expmod($n-$i,$m)*$d)%$m;
}
say $c
0