結果
問題 | No.926 休日の平均 |
ユーザー | laft |
提出日時 | 2019-12-25 00:07:01 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 5,100 bytes |
コンパイル時間 | 2,278 ms |
コンパイル使用メモリ | 201,668 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-22 16:53:22 |
合計ジャッジ時間 | 3,045 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,948 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 2 ms
6,940 KB |
testcase_17 | AC | 2 ms
6,944 KB |
testcase_18 | AC | 2 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,940 KB |
testcase_20 | AC | 2 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,940 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 2 ms
6,940 KB |
ソースコード
/* 友利奈緒ぱわーでACしてくれ!!!!!!!!!!!! Charlotteまだ見てない人は見ような!!!!!!! / /:/ \:ヽ \ / / \ ヽ \__L 彡 ヽ ', フ / / / / , ヽ ', j レ / / / ', ヽ j // ! /_l_/__ノ { \} ', ',/ i ハ { 从j ハ i ', ト-、} i i } jj ( ハ ( 川 ハ ハ ! ' ハ ハ j j ,' 八 <_,ィ∧ 斗芹テミxハ ハ レ } /__レレ / ∧ \ ノ ∨ \ ゝ 辷:ソ ) 芹レ心ヾレ′ / ト-- ´ \ー‐' ノ \ゝ ゞ:_ソ "/ / ヽ フ i八 " " , ム彡 \ / / j ト " "イト< \\ / / j //ヽ、 ∩ イ { {  ̄ フフへ \\ ( / ,/ / i >――<ニニニニ┐ 〃/: : ヽ ヽヽ / ィT´/ /┌―  ̄ ̄ /::: , ,) 〃//: : : : : :} ヽヽ) / / ∧ヾi┌― { { ̄ ノ:::ト゚< ∥//: : : : : : : : i ノ ノ . ( 人 {:ヽヾi∨ ∧V /:::/ 、ヽ ∥/: : : : : : : : : :} / V ( ∧: :\'∨ ∧V ノ:::/ ∧ 〉___∥: : : : : :/: : : :レ /∧: : : : ∨ ∧V┬イ:::ノ 〈 TT | |{{: : : : /: : : : : ∧ ノ ( ハ: : : : :∨'T∧Vi i ( V ! ! {{: : / : : : : : : / ー ノ V ハ: : : : :∨ヘ∧V i ゝゝ i/⌒\{/ : : : : : : : /ー― ´ ∨ ヽ: : : : :∨ヘ∧∨i 〉 〉 / /二 ): : : : : : : : :/ (https://seesaawiki.jp/asciiart/d/Charlotte より) */ #include <bits/stdc++.h> using namespace std; using ll = long long; using ull = unsigned long long; // #define int ll // #define DEBUG 42 inline void nprint(){} template <class Head, class... Tail> inline void nprint(Head &&head, Tail &&... tail) { cout << head << endl; nprint(move(tail)...); } #ifdef DEBUG #define eprint(...) nprint(__VA_ARGS__) #else #define eprint(...) if(0==1) cout << 1 << endl; #endif #define Yes(a) cout << (a ? "Yes" : "No") << endl #define YES(a) cout << (a ? "YES" : "NO") << endl #define POSSIBLE(a) cout << (a ? "POSSIBLE" : "IMPOSSIBLE") << endl using cmp = complex<double>; using vb = vector<bool>; using vvb = vector<vb>; using vi = vector<int>; using vvi = vector<vi>; using vl = vector<ll>; using vvl = vector<vl>; template<class T> using V = vector<T>; template<class T> using VV = vector<V<T>>; #define fi first #define se second #define maxs(x,y) (x=max<ll>(x,y)) #define mins(x,y) (x=min<ll>(x,y)) using pii = pair<int,int>; using pll = pair<ll,ll>; #define FOR(i,a,b) for(ll i = (a); i < (ll)(b); ++i) #define REP(i,n) FOR(i,0,n) #define FORS(i,a,b) FOR(i,a,b+1) #define REPS(i,n) REP(i,n+1) #define RFOR(i,a,b) for(ll i = (ll)(b)-1;i >= a;--i) #define RREP(i,n) RFOR(i,0,n) #define RREPS(i,n) RREP(i,n+1) #define RFORS(i,a,b) RFOR(i,a,b+1) #define ALL(obj) (obj).begin(), (obj).end() #define RALL(obj) (obj).rbegin(), (obj).rend() #define PERM(c) sort(ALL(c)); for(bool cp = true;cp;cp = next_permutation(ALL(c))) #define eb(val) emplace_back(val) const double PI = acos(-1), EPS = 1e-10; constexpr ll MOD = 1E9+7; constexpr int dx[] = {1,0,-1,0}; constexpr int dy[] = {0,1,0,-1}; template<typename T1, typename T2> ostream& operator<<(ostream& s, const pair<T1, T2>& p){ return s << "(" << p.first << ", " << p.second << ")"; } template<class T> istream& operator>>(istream &is,vector<T> &st){ for(size_t i=0;i<st.size();++i) is >> st[i]; return is; } template<class T> istream& operator>>(istream &is,vector<vector<T>> &st){ for(size_t i=0;i<st.size();++i) is >> st[i]; return is; } template<class T> ostream& operator<<(ostream &os, const vector<T> &st){ for(size_t i=0;i<st.size();++i){ if(i==st.size()-1) os << st[i]; else os << st[i] << " "; } return os; } template<class T> ostream& operator<<(ostream &os, const vector<vector<T>> &st){ for(size_t i=0;i<st.size();++i){ os << st[i]; if(i!=st.size()-1) os << endl; } return os; } signed main(){ cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(10); int a,b,c; cin >> a >> b >> c; double ans = a; ans *= c; ans /= b; cout << ans << endl; }