結果
問題 | No.475 最終日 - Writerの怠慢 |
ユーザー | tails |
提出日時 | 2016-12-25 00:27:09 |
言語 | Perl (5.38.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 229 bytes |
コンパイル時間 | 50 ms |
コンパイル使用メモリ | 5,376 KB |
実行使用メモリ | 21,404 KB |
最終ジャッジ日時 | 2024-05-08 14:05:45 |
合計ジャッジ時間 | 2,093 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,632 KB |
testcase_01 | AC | 3 ms
5,632 KB |
testcase_02 | AC | 5 ms
6,016 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 102 ms
21,196 KB |
testcase_14 | AC | 3 ms
5,504 KB |
コンパイルメッセージ
Name "main::n" used only once: possible typo at Main.pl line 1. Main.pl syntax OK
ソースコード
($n,$s,$w)=<>=~/\d+/g; @a=<>=~/\d+/g; ($w)=splice@a,$w,1; @a=sort{$b<=>$a}@a; @b=map{50*$s+int(250*$s/(4+$_))}1..@a; $i=$#b; $c=1; for(@a){ while($i>=0 && $b[$i]+$_<=$b[0]+$w){ --$i; } ++$j; $c*=(@b-$i-$j)/$j; } print $c;