結果

問題 No.1305 Speak of the Devil
ユーザー naniwazunaniwazu
提出日時 2020-12-02 01:26:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 122 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 54,492 KB
最終ジャッジ日時 2024-09-13 03:38:04
合計ジャッジ時間 2,143 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
52,824 KB
testcase_02 AC 37 ms
53,352 KB
testcase_03 WA -
testcase_04 AC 37 ms
51,944 KB
testcase_05 AC 38 ms
52,608 KB
testcase_06 AC 37 ms
52,968 KB
testcase_07 AC 36 ms
53,468 KB
testcase_08 WA -
testcase_09 AC 38 ms
52,292 KB
testcase_10 AC 37 ms
52,120 KB
testcase_11 AC 37 ms
53,008 KB
testcase_12 AC 37 ms
52,440 KB
testcase_13 AC 37 ms
52,552 KB
testcase_14 AC 36 ms
52,756 KB
testcase_15 AC 38 ms
52,924 KB
testcase_16 AC 37 ms
51,828 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 37 ms
53,500 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 36 ms
53,624 KB
testcase_25 AC 36 ms
52,084 KB
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

p,q = map(int,input().split())
ans = q
if p == 1:
    ans = min(ans,1)
else:
    ans = min(ans,p**3*(1-1/p)**2)
print(ans)
0