結果
| 問題 |
No.242 ビンゴゲーム
|
| コンテスト | |
| ユーザー |
convexineq
|
| 提出日時 | 2020-12-30 21:41:44 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
AC
|
| 実行時間 | 37 ms / 2,000 ms |
| コード長 | 81 bytes |
| コンパイル時間 | 276 ms |
| コンパイル使用メモリ | 82,040 KB |
| 実行使用メモリ | 53,168 KB |
| 最終ジャッジ日時 | 2024-10-08 03:33:20 |
| 合計ジャッジ時間 | 1,285 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 8 |
ソースコード
n = int(input())
ans = 12.0
for i in range(5):
ans *= (n-i)/(99-i)
print(ans)
convexineq