結果

問題 No.573 a^2[i] = a[i]
ユーザー tailstails
提出日時 2017-10-07 00:06:15
言語 Raku
(rakudo v2024.12)
結果
WA  
実行時間 -
コード長 402 bytes
コンパイル時間 525 ms
コンパイル使用メモリ 135,168 KB
実行使用メモリ 142,080 KB
最終ジャッジ日時 2024-11-24 14:41:23
合計ジャッジ時間 21,382 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 402 ms
136,376 KB
testcase_01 AC 389 ms
136,356 KB
testcase_02 AC 387 ms
136,352 KB
testcase_03 AC 396 ms
136,120 KB
testcase_04 AC 388 ms
136,228 KB
testcase_05 AC 382 ms
136,352 KB
testcase_06 AC 384 ms
136,484 KB
testcase_07 AC 382 ms
136,356 KB
testcase_08 AC 380 ms
136,228 KB
testcase_09 AC 374 ms
136,228 KB
testcase_10 AC 376 ms
136,096 KB
testcase_11 AC 372 ms
136,096 KB
testcase_12 AC 375 ms
136,248 KB
testcase_13 AC 383 ms
136,100 KB
testcase_14 AC 373 ms
136,480 KB
testcase_15 AC 381 ms
136,372 KB
testcase_16 AC 373 ms
136,484 KB
testcase_17 AC 387 ms
136,096 KB
testcase_18 AC 395 ms
136,352 KB
testcase_19 AC 383 ms
136,352 KB
testcase_20 AC 381 ms
136,612 KB
testcase_21 AC 382 ms
136,376 KB
testcase_22 AC 383 ms
136,352 KB
testcase_23 AC 389 ms
136,100 KB
testcase_24 AC 384 ms
136,484 KB
testcase_25 AC 391 ms
136,100 KB
testcase_26 AC 389 ms
136,100 KB
testcase_27 AC 382 ms
136,248 KB
testcase_28 AC 384 ms
136,352 KB
testcase_29 AC 387 ms
136,480 KB
testcase_30 AC 382 ms
136,224 KB
testcase_31 AC 384 ms
136,192 KB
testcase_32 AC 402 ms
136,960 KB
testcase_33 AC 412 ms
136,836 KB
testcase_34 AC 412 ms
137,476 KB
testcase_35 AC 427 ms
137,344 KB
testcase_36 AC 426 ms
137,472 KB
testcase_37 AC 438 ms
137,476 KB
testcase_38 AC 435 ms
137,476 KB
testcase_39 AC 461 ms
140,928 KB
testcase_40 AC 476 ms
140,932 KB
testcase_41 AC 495 ms
139,548 KB
testcase_42 AC 539 ms
140,168 KB
testcase_43 AC 528 ms
141,060 KB
testcase_44 AC 622 ms
142,080 KB
testcase_45 WA -
testcase_46 AC 385 ms
136,484 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