結果

問題 No.1342 Calculation
ユーザー Yug_min_nullYug_min_null
提出日時 2021-09-03 12:04:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 170 bytes
コンパイル時間 2,075 ms
コンパイル使用メモリ 184,696 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-14 16:47:56
合計ジャッジ時間 2,419 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
  double ans = 2021.0;
  ans *= (19/47 + 28/43);
  ans /= 27;
  cout << ans << endl;
}
0