結果

問題 No.1487 ぺんぎんさんかっけー
ユーザー Mr_uts1_quizerMr_uts1_quizer
提出日時 2021-04-23 22:45:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 412 bytes
コンパイル時間 1,452 ms
コンパイル使用メモリ 167,408 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-04 08:27:54
合計ジャッジ時間 9,567 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
5,248 KB
testcase_01 AC 175 ms
5,376 KB
testcase_02 AC 172 ms
5,376 KB
testcase_03 AC 172 ms
5,376 KB
testcase_04 AC 173 ms
5,376 KB
testcase_05 AC 175 ms
5,376 KB
testcase_06 AC 174 ms
5,376 KB
testcase_07 AC 177 ms
5,376 KB
testcase_08 AC 176 ms
5,376 KB
testcase_09 AC 173 ms
5,376 KB
testcase_10 AC 171 ms
5,376 KB
testcase_11 AC 176 ms
5,376 KB
testcase_12 AC 174 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 177 ms
5,376 KB
testcase_15 WA -
testcase_16 AC 188 ms
5,376 KB
testcase_17 AC 181 ms
5,376 KB
testcase_18 WA -
testcase_19 AC 188 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 187 ms
5,376 KB
testcase_22 AC 185 ms
5,376 KB
testcase_23 AC 180 ms
5,376 KB
testcase_24 AC 173 ms
5,376 KB
testcase_25 AC 179 ms
5,376 KB
testcase_26 AC 176 ms
5,376 KB
testcase_27 AC 178 ms
5,376 KB
testcase_28 AC 178 ms
5,376 KB
testcase_29 AC 177 ms
5,376 KB
testcase_30 AC 175 ms
5,376 KB
testcase_31 AC 177 ms
5,376 KB
testcase_32 AC 176 ms
5,376 KB
testcase_33 AC 177 ms
5,376 KB
testcase_34 AC 174 ms
5,376 KB
testcase_35 AC 176 ms
5,376 KB
testcase_36 AC 173 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
 
int main() {
  double a,b,c;
  cin >> a >> b >> c;
  double s;
  s=(a+b+c)/2;
  double tri;
  tri=sqrt(s*(s-a)*(s-b)*(s-c));
  double count=0;
  for(int i=0; i<500;i++){
    for(int j=0; j<500;j++){
      for(int k=0; k<500;k++){
        count += tri*(1-(1-i/500)*(j/500)-(1-j/500)*(k/500)-(1-k/500)*(i/500));
      }
    }
  }
  cout << count/500000000 << endl;
}
0