結果

問題 No.1980 [Cherry 4th Tune D] 停止距離
ユーザー 沙耶花沙耶花
提出日時 2022-06-17 21:35:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 773 ms / 3,000 ms
コード長 710 bytes
コンパイル時間 4,186 ms
コンパイル使用メモリ 261,236 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-09 07:09:04
合計ジャッジ時間 24,002 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 127 ms
5,248 KB
testcase_02 AC 522 ms
5,248 KB
testcase_03 AC 361 ms
5,248 KB
testcase_04 AC 94 ms
5,248 KB
testcase_05 AC 474 ms
5,248 KB
testcase_06 AC 733 ms
5,248 KB
testcase_07 AC 734 ms
5,248 KB
testcase_08 AC 750 ms
5,248 KB
testcase_09 AC 762 ms
5,248 KB
testcase_10 AC 740 ms
5,248 KB
testcase_11 AC 726 ms
5,248 KB
testcase_12 AC 724 ms
5,248 KB
testcase_13 AC 744 ms
5,248 KB
testcase_14 AC 746 ms
5,248 KB
testcase_15 AC 737 ms
5,248 KB
testcase_16 AC 756 ms
5,248 KB
testcase_17 AC 769 ms
5,248 KB
testcase_18 AC 757 ms
5,248 KB
testcase_19 AC 752 ms
5,248 KB
testcase_20 AC 757 ms
5,248 KB
testcase_21 AC 746 ms
5,248 KB
testcase_22 AC 761 ms
5,248 KB
testcase_23 AC 773 ms
5,248 KB
testcase_24 AC 767 ms
5,248 KB
testcase_25 AC 771 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf 1000000001



int main(){
	
	int _t;
	cin>>_t;
	
	rep(_,_t){
		long long T,m,L;
		{
			double tt,mm,LL;
			cin>>tt>>mm>>LL;
			T = round(tt*100.0);
			m = round(mm*100.0);
			L = round(LL*100.0);
		}
		L *= 100;
		long long ok = 0,ng = 5100 * 100+1;
		
		while(ng-ok>1LL){
			long long mid  =(ok+ng)/2;
			long long V = mid;
			if(m*L*18*18 >= V*T*m*18*5 + V*V*5*5*5)ok = mid;
			else ng = mid;
			
		}
		double ans = ok;
		ans /= 100.0;
		cout<<fixed<<setprecision(2)<<ans<<endl;
		
		
	}
	
    return 0;
}
0