結果

問題 No.573 a^2[i] = a[i]
ユーザー tailstails
提出日時 2017-10-07 00:06:15
言語 Raku
(rakudo v2024.02)
結果
WA  
実行時間 -
コード長 402 bytes
コンパイル時間 505 ms
コンパイル使用メモリ 136,008 KB
実行使用メモリ 142,592 KB
最終ジャッジ日時 2024-05-03 14:08:49
合計ジャッジ時間 24,562 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 451 ms
136,480 KB
testcase_01 AC 439 ms
136,484 KB
testcase_02 AC 496 ms
136,480 KB
testcase_03 AC 447 ms
136,480 KB
testcase_04 AC 447 ms
136,356 KB
testcase_05 AC 445 ms
136,612 KB
testcase_06 AC 445 ms
136,352 KB
testcase_07 AC 449 ms
136,228 KB
testcase_08 AC 444 ms
136,376 KB
testcase_09 AC 440 ms
136,480 KB
testcase_10 AC 448 ms
136,224 KB
testcase_11 AC 457 ms
136,224 KB
testcase_12 AC 454 ms
136,096 KB
testcase_13 AC 445 ms
136,356 KB
testcase_14 AC 445 ms
136,096 KB
testcase_15 AC 445 ms
136,504 KB
testcase_16 AC 450 ms
136,244 KB
testcase_17 AC 449 ms
136,372 KB
testcase_18 AC 451 ms
136,356 KB
testcase_19 AC 444 ms
136,096 KB
testcase_20 AC 459 ms
136,228 KB
testcase_21 AC 446 ms
136,612 KB
testcase_22 AC 453 ms
136,096 KB
testcase_23 AC 448 ms
136,352 KB
testcase_24 AC 460 ms
136,612 KB
testcase_25 AC 446 ms
136,228 KB
testcase_26 AC 457 ms
136,228 KB
testcase_27 AC 439 ms
136,100 KB
testcase_28 AC 443 ms
136,484 KB
testcase_29 AC 451 ms
136,708 KB
testcase_30 AC 452 ms
136,228 KB
testcase_31 AC 454 ms
136,608 KB
testcase_32 AC 475 ms
136,448 KB
testcase_33 AC 483 ms
136,964 KB
testcase_34 AC 484 ms
137,600 KB
testcase_35 AC 495 ms
137,608 KB
testcase_36 AC 500 ms
137,604 KB
testcase_37 AC 499 ms
137,860 KB
testcase_38 AC 510 ms
137,220 KB
testcase_39 AC 543 ms
141,184 KB
testcase_40 AC 545 ms
141,056 KB
testcase_41 AC 568 ms
141,060 KB
testcase_42 AC 617 ms
140,952 KB
testcase_43 AC 619 ms
140,928 KB
testcase_44 AC 722 ms
142,592 KB
testcase_45 WA -
testcase_46 AC 448 ms
136,248 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

my $ds=[1,803016460,114878453,169452473,677656472,149033233,677656472,169452473,114878453,803016460,1];
my $cs=[0,108187056,517118688,684352284,641063587,651656589,971586099,64216974,303566513,593448378,818317402];

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