結果
問題 | No.2407 Bouns 2.0 |
ユーザー |
|
提出日時 | 2023-08-11 21:22:24 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 464 bytes |
コンパイル時間 | 1,508 ms |
コンパイル使用メモリ | 193,328 KB |
最終ジャッジ日時 | 2025-02-16 00:55:52 |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 18 |
ソースコード
// #pragma GCC optimize("O3,unroll-loops") // #pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt") #include "bits/stdc++.h" using namespace std; using ll = long long int; mt19937_64 rng(chrono::high_resolution_clock::now().time_since_epoch().count()); int main() { ios::sync_with_stdio(false); cin.tie(0); int w, z; cin >> w >> z; long double b; cin >> b; long double ans = (w + z) * (1 + b); long long fin = ans + 0.1; cout << fin << '\n'; }