結果
問題 | No.1076 寿司打 |
ユーザー | Nagisa |
提出日時 | 2020-06-12 21:43:39 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 35 ms / 2,000 ms |
コード長 | 153 bytes |
コンパイル時間 | 101 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-06-24 04:42:28 |
合計ジャッジ時間 | 1,111 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 |
ソースコード
import sys def input(): return sys.stdin.readline()[:-1] def main(): p = float(input()) print(p/(1-p)) if __name__ == '__main__': main()