結果

問題 No.1487 ぺんぎんさんかっけー
ユーザー Mr_uts1_quizerMr_uts1_quizer
提出日時 2021-04-23 22:43:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 411 bytes
コンパイル時間 1,392 ms
コンパイル使用メモリ 165,848 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-04 08:26:48
合計ジャッジ時間 2,788 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
5,248 KB
testcase_01 AC 13 ms
5,376 KB
testcase_02 AC 13 ms
5,376 KB
testcase_03 AC 13 ms
5,376 KB
testcase_04 AC 13 ms
5,376 KB
testcase_05 AC 13 ms
5,376 KB
testcase_06 AC 12 ms
5,376 KB
testcase_07 AC 13 ms
5,376 KB
testcase_08 AC 13 ms
5,376 KB
testcase_09 AC 13 ms
5,376 KB
testcase_10 AC 13 ms
5,376 KB
testcase_11 AC 13 ms
5,376 KB
testcase_12 AC 13 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 14 ms
5,376 KB
testcase_15 WA -
testcase_16 AC 13 ms
5,376 KB
testcase_17 AC 14 ms
5,376 KB
testcase_18 WA -
testcase_19 AC 13 ms
5,376 KB
testcase_20 WA -
testcase_21 AC 14 ms
5,376 KB
testcase_22 AC 13 ms
5,376 KB
testcase_23 AC 13 ms
5,376 KB
testcase_24 AC 13 ms
5,376 KB
testcase_25 AC 13 ms
5,376 KB
testcase_26 AC 13 ms
5,376 KB
testcase_27 AC 14 ms
5,376 KB
testcase_28 AC 13 ms
5,376 KB
testcase_29 AC 13 ms
5,376 KB
testcase_30 AC 12 ms
5,376 KB
testcase_31 AC 13 ms
5,376 KB
testcase_32 AC 14 ms
5,376 KB
testcase_33 AC 14 ms
5,376 KB
testcase_34 AC 14 ms
5,376 KB
testcase_35 AC 13 ms
5,376 KB
testcase_36 AC 12 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<200;i++){
    for(int j=0; j<200;j++){
      for(int k=0; k<200;k++){
        count += tri*(1-(1-i/200)*(j/200)-(1-j/200)*(k/200)-(1-k/200)*(i/200));
      }
    }
  }
  cout << count/32000000 << endl;
}
0