結果
問題 | No.2461 一点張り |
ユーザー | 👑 Nachia |
提出日時 | 2021-05-09 15:56:22 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 784 bytes |
コンパイル時間 | 7,729 ms |
コンパイル使用メモリ | 242,732 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-11 01:44:50 |
合計ジャッジ時間 | 7,370 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 4 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
ソースコード
#include "testlib.h" #include <stdio.h> const int maxK = 10'000'000; int main() { registerValidation(); int T = inf.readInt(1,1000,"T"); if(T!=4 && T!=1000) inf.quit(_wa, ("Integer parameter [name=T] equals to " + vtos(T) + ", violates the restriction \"T=4 OR 1000\"").c_str()); inf.readEoln(); for(int testcase_id=1; testcase_id<=T; testcase_id++){ std::string testcase_id_s = " for testcase " + vtos(testcase_id); double p = inf.readStrictReal(0.0,1.0,1,10,"p"+testcase_id_s); inf.readSpace(); int K = inf.readInt(0,maxK,"K"+testcase_id_s); inf.readEoln(); if(p == 0){ printf("%d\n",K); } else{ double ans = (1.0-pow(1.0-p,K)) / p; printf("%.12f\n",ans); } } inf.readEof(); return 0; }