結果
問題 | No.1009 面積の求め方 |
ユーザー | POTAPO1012 |
提出日時 | 2020-03-21 23:26:36 |
言語 | C (gcc 12.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 355 bytes |
コンパイル時間 | 259 ms |
コンパイル使用メモリ | 29,312 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-06 09:57:35 |
合計ジャッジ時間 | 1,147 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 1 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 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 | - |
ソースコード
#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){ } for(int p=0;b==i2;++i2){ } 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; }