할 일이 조금 있다
https://www.acmicpc.net/problem/17356
풀이
문제의 수식을 그대로 적어주면 된다. 상대오차 $10^{-4}$이하로 맞추면 되어서 크게 어렵지 않다.
시간 복잡도 : $O(1)$
/* basic setup {{{ */
#include<bits/stdc++.h>
#define ff first
#define ss second
#define pb push_back
#define sz(x) ((int)x.size())
#define all(x) x.begin(),x.end()
#define compress(x) sort(all(x)), x.erase(unique(all(x)), x.end())
#define fast_io ios_base::sync_with_stdio(0),cin.tie(0),cout.tie(0)
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;
typedef const int ci;
const int MOD = 1e9+7;
const int INF = 0x3f3f3f3f;
const ll LINF = 0x3f3f3f3f3f3f3f3f;
/*}}}*/
long double a, b;
int main(){
fast_io;
cin>>a>>b;
cout<<(1/(1+pow(10,(b-a)/400)));
cout<<'\n';
}
'백준 문제 해설' 카테고리의 다른 글
백준 25704 출석 이벤트 (0) | 2022.11.05 |
---|---|
백준 18409 母音を数える (Counting Vowels) (0) | 2022.11.04 |
백준 4589 Gnome Sequencing (0) | 2022.11.03 |
백준 23235 The Fastest Sorting Algorithm In The World (0) | 2022.11.02 |
백준 5524 입실 관리 (1) | 2022.10.31 |
백준 20648 Rectangular Pasture (0) | 2022.10.30 |
백준 25625 샤틀버스 (0) | 2022.10.29 |
백준 25494 단순한 문제 (Small) (0) | 2022.10.28 |