結果

問題 No.2407 Bouns 2.0
ユーザー 高翊恩
提出日時 2023-08-25 16:54:17
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 1,650 ms
コンパイル使用メモリ 165,024 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-24 02:11:18
合計ジャッジ時間 2,177 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#define int long long
typedef pair<int, int> pii;

int a, b;
double c;

int32_t main() {
    cin.tie(0) -> sync_with_stdio(false);
    cin >> a >> b >> c;
    cout << (int) ((a + b) * (c + 1 + 1e-6)) << endl;
    return 0;
}
0