結果

問題 No.573 a^2[i] = a[i]
ユーザー tailstails
提出日時 2017-10-07 00:12:29
言語 Raku
(rakudo v2024.02)
結果
AC  
実行時間 632 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 413 ms
コンパイル使用メモリ 146,576 KB
実行使用メモリ 148,440 KB
最終ジャッジ日時 2024-11-24 14:43:05
合計ジャッジ時間 20,843 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 375 ms
137,700 KB
testcase_01 AC 380 ms
137,060 KB
testcase_02 AC 382 ms
137,700 KB
testcase_03 AC 376 ms
137,956 KB
testcase_04 AC 381 ms
137,700 KB
testcase_05 AC 379 ms
137,576 KB
testcase_06 AC 384 ms
138,084 KB
testcase_07 AC 383 ms
137,956 KB
testcase_08 AC 380 ms
137,828 KB
testcase_09 AC 381 ms
137,828 KB
testcase_10 AC 400 ms
137,828 KB
testcase_11 AC 402 ms
137,576 KB
testcase_12 AC 382 ms
137,832 KB
testcase_13 AC 376 ms
137,960 KB
testcase_14 AC 372 ms
137,576 KB
testcase_15 AC 376 ms
137,704 KB
testcase_16 AC 385 ms
137,572 KB
testcase_17 AC 376 ms
137,828 KB
testcase_18 AC 379 ms
137,832 KB
testcase_19 AC 389 ms
137,572 KB
testcase_20 AC 400 ms
138,084 KB
testcase_21 AC 389 ms
137,832 KB
testcase_22 AC 387 ms
137,064 KB
testcase_23 AC 384 ms
137,576 KB
testcase_24 AC 390 ms
137,828 KB
testcase_25 AC 386 ms
137,700 KB
testcase_26 AC 380 ms
137,956 KB
testcase_27 AC 386 ms
137,704 KB
testcase_28 AC 381 ms
137,960 KB
testcase_29 AC 382 ms
137,960 KB
testcase_30 AC 383 ms
137,704 KB
testcase_31 AC 392 ms
137,704 KB
testcase_32 AC 389 ms
137,960 KB
testcase_33 AC 402 ms
137,572 KB
testcase_34 AC 419 ms
138,196 KB
testcase_35 AC 406 ms
138,180 KB
testcase_36 AC 407 ms
138,324 KB
testcase_37 AC 404 ms
138,712 KB
testcase_38 AC 404 ms
138,456 KB
testcase_39 AC 410 ms
138,712 KB
testcase_40 AC 425 ms
139,220 KB
testcase_41 AC 448 ms
142,920 KB
testcase_42 AC 467 ms
142,932 KB
testcase_43 AC 489 ms
143,192 KB
testcase_44 AC 518 ms
144,216 KB
testcase_45 AC 632 ms
148,440 KB
testcase_46 AC 376 ms
137,572 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# cheat
my$m=10**9+7;
my$n=get;
my$c=0;
my$d=1;
if $n==100000 {
	$n=0;
	$c=818317402;
}
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