結果
問題 | No.858 わり算 |
ユーザー | bin101 |
提出日時 | 2020-02-26 00:06:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,975 bytes |
コンパイル時間 | 951 ms |
コンパイル使用メモリ | 99,552 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 14:41:13 |
合計ジャッジ時間 | 1,415 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
ソースコード
#pragma GCC optimize("Ofast") #include <cstdio> #include <cstdlib> #include <string> #include <algorithm> #include <iostream> #include <queue> #include <vector> #include <bitset> #include <cmath> #include <limits> #include <iostream> #include <map> #include <set> #include <tuple> #include <iomanip> #include <functional> using namespace std; typedef long long ll; typedef pair<int,int> pii; typedef pair<int,ll> pil; typedef pair<ll,int> pli; typedef pair<ll,ll> pll; template<class T,class U>constexpr bool chmin(T&a,const U b){if(a<=b)return false;a=b;return true;} template<class T,class U>constexpr bool chmax(T&a,const U b){if(a>=b)return false;a=b;return true;} #define bit(n,k) ( (n>>k)&1 ) //デバッグ template<class T> void Vout(vector<T> &V){ cout<<"\nstart\n"; const int sz=V.size(); for(int i=0;i<sz;i++){ cout<<i<<" "<<V[i]<<'\n'; } cout<<"end\n"<<endl; } template<class T> void VPout(vector<T> &V){ cout<<"\nstart\n"; const int sz=V.size(); for(int i=0;i<sz;i++){ cout<<i<<" "<<V[i].first<<" "<<V[i].second<<'\n'; } cout<<"end\n"<<endl; } //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ //+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ constexpr int MAX=1<<30; constexpr ll INF=1LL<<62; constexpr int MOD=1e9+7; int dx[]={1,-1,0,0},dy[]={0,0,-1,1}; //__builtin_popcount(S); //#define int ll //vector<vector<int>> data(3, vector<int>(4)); //vector.resize(a,vector<int>(b,-1)); //vector<vector<vector<要素の型>>> 変数名(要素数1, vector<vector<要素の型>>(要素数2, vector<要素の型>(要素数3, 初期値))); signed main(){ ios::sync_with_stdio(false); cin.tie(nullptr); cout<<fixed<<setprecision(50); long double a,b; cin>>a>>b; cout<<a/b<<endl; }