結果
問題 | No.1688 Veterinarian |
ユーザー | tails |
提出日時 | 2021-09-27 18:00:27 |
言語 | C (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 10 ms / 3,000 ms |
コード長 | 654 bytes |
コンパイル時間 | 920 ms |
コンパイル使用メモリ | 32,640 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-06 13:52:18 |
合計ジャッジ時間 | 1,301 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 9 ms
6,944 KB |
testcase_02 | AC | 4 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 9 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 10 ms
6,940 KB |
testcase_09 | AC | 10 ms
6,940 KB |
testcase_10 | AC | 7 ms
6,940 KB |
testcase_11 | AC | 5 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 6 ms
6,940 KB |
testcase_14 | AC | 3 ms
6,940 KB |
testcase_15 | AC | 8 ms
6,940 KB |
testcase_16 | AC | 4 ms
6,940 KB |
コンパイルメッセージ
main.c:10:1: warning: return type defaults to 'int' [-Wimplicit-int] 10 | main(){ | ^~~~ main.c: In function 'main': main.c:15:9: warning: implicit declaration of function 'scanf' [-Wimplicit-function-declaration] 15 | scanf("%ld%ld%ld%ld",&a,&b,&c,&n); | ^~~~~ main.c:1:1: note: include '<stdio.h>' or provide a declaration of 'scanf' +++ |+#include <stdio.h> 1 | #pragma GCC optimize("Ofast") main.c:15:9: warning: incompatible implicit declaration of built-in function 'scanf' [-Wbuiltin-declaration-mismatch] 15 | scanf("%ld%ld%ld%ld",&a,&b,&c,&n); | ^~~~~ main.c:15:9: note: include '<stdio.h>' or provide a declaration of 'scanf' main.c:35:9: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration] 35 | printf("%.8f %.8f %.8f",d[a][b][c],d[b][c][a],d[c][a][b]); | ^~~~~~ main.c:35:9: note: include '<stdio.h>' or provide a declaration of 'printf' main.c:35:9: warning: incompatible implicit declaration of built-in function 'printf' [-Wbuiltin-declaration-mismatch] main.c:35:9: note: include '<stdio.h>' or provide a declaration of 'printf'
ソースコード
#pragma GCC optimize("Ofast") #pragma GCC target("avx2") #define rep(v,e) for(long v=0;v<e;++v) #define rrep3(v,s,e) for(long v=e;--v>=s;) double m[151]; double d[51][51][51]; main(){ rep(i,151){ m[i]=i*(i-1); } long a,b,c,n; scanf("%ld%ld%ld%ld",&a,&b,&c,&n); rep(i,n){ rrep3(x,2,51){ double xx=m[x]; rrep3(y,1,51){ double yy=m[y]; rrep3(z,1,51){ double zz=m[z]; long s=x+y+z; double ss=m[s]; double a=d[x][y][z]; d[x][y][z]=a+( xx*(d[x-1][y][z]-a+1)+ yy*(d[x][y-1][z]-a)+ zz*(d[x][y][z-1]-a) )/ss; } } } } printf("%.8f %.8f %.8f",d[a][b][c],d[b][c][a],d[c][a][b]); }