結果

問題 No.1009 面積の求め方
ユーザー POTAPO1012POTAPO1012
提出日時 2020-03-21 23:38:11
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 381 bytes
コンパイル時間 798 ms
コンパイル使用メモリ 28,672 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-06 10:17:49
合計ジャッジ時間 1,456 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
int main(void){
    int a,b,i1=0,i2=0,i,j;
    scanf("%d%d",&a,&b);
    if(a==0&&b==0)
    printf("0\n");
    for(int p=0;a==i1;++i1){
        ++p;
    }
    for(int p=0;b==i2;++i2){
        ++p;
    }
    i=i1>i2?i2:i1;
    j=i1>i2?i1:i2;
    double ans=(2*j*j*j-2*i*i*i+3*a*b*b-3*a*j*j-3*b*j*j+3*a*i*i+3*b*i*i-3*a*b*b)/6;
    printf("%f\n",ans);
    return 0;
}
0