結果
問題 | No.2461 一点張り |
ユーザー | イルカ |
提出日時 | 2024-06-14 02:54:13 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 94 bytes |
コンパイル時間 | 763 ms |
コンパイル使用メモリ | 82,392 KB |
実行使用メモリ | 72,436 KB |
最終ジャッジ日時 | 2024-06-14 02:54:16 |
合計ジャッジ時間 | 2,873 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,192 KB |
testcase_01 | RE | - |
testcase_02 | AC | 60 ms
66,212 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 61 ms
66,104 KB |
testcase_07 | RE | - |
ソースコード
N=int(input()) for i in range(N): p,K=map(float,input().split()) print((1-(1-p)**K)/p)