結果
問題 | No.1305 Speak of the Devil |
ユーザー | face4 |
提出日時 | 2020-12-05 11:49:16 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 261 bytes |
コンパイル時間 | 575 ms |
コンパイル使用メモリ | 64,288 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-15 16:52:47 |
合計ジャッジ時間 | 1,525 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 23 |
ソースコード
#include<iostream> using namespace std; // 成功確率pのベルヌーイ試行が成功するまで試行を行い続けるとき、 // 試行回数の期待値は1/p int main(){ int p, q; cin >> p >> q; cout << min(p, q) << endl; return 0; }