結果

問題 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,032 ms
コンパイル使用メモリ 185,876 KB
実行使用メモリ 6,812 KB
最終ジャッジ日時 2024-05-08 12:47:07
合計ジャッジ時間 2,529 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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