結果
問題 | No.475 最終日 - Writerの怠慢 |
ユーザー | yuppe19 😺 |
提出日時 | 2016-12-25 00:29:16 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 484 bytes |
コンパイル時間 | 569 ms |
コンパイル使用メモリ | 6,912 KB |
実行使用メモリ | 13,264 KB |
最終ジャッジ日時 | 2024-05-08 14:05:56 |
合計ジャッジ時間 | 2,946 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
6,528 KB |
testcase_01 | AC | 10 ms
6,400 KB |
testcase_02 | WA | - |
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 | AC | 130 ms
13,132 KB |
testcase_13 | AC | 133 ms
10,572 KB |
testcase_14 | AC | 10 ms
6,272 KB |
ソースコード
#!/usr/bin/python2 # -*- coding: utf-8 -*- # † from bisect import bisect_right n, s, writer_id = map(int, raw_input().split()) a = map(int, raw_input().split()) score = [] for i in xrange(1, n): score.append(s * 50 + (s * 250) / (i + 4)) writer_score = a[writer_id] + score[0] score.reverse() prob = 1.0 for i in xrange(n): if i == writer_id: continue cnt = bisect_right(score, writer_score - a[i]) prob *= float(cnt) / (n-1) print '{:.15f}'.format(prob)