結果
問題 | No.66 輝け☆全国たこやき杯 |
ユーザー | リチウム |
提出日時 | 2014-11-14 00:27:50 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 235 ms / 5,000 ms |
コード長 | 793 bytes |
コンパイル時間 | 3,255 ms |
コンパイル使用メモリ | 77,720 KB |
実行使用メモリ | 55,020 KB |
最終ジャッジ日時 | 2024-06-10 02:54:49 |
合計ジャッジ時間 | 5,071 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 104 ms
52,960 KB |
testcase_01 | AC | 121 ms
54,088 KB |
testcase_02 | AC | 120 ms
53,916 KB |
testcase_03 | AC | 106 ms
52,800 KB |
testcase_04 | AC | 120 ms
54,192 KB |
testcase_05 | AC | 124 ms
53,972 KB |
testcase_06 | AC | 128 ms
54,164 KB |
testcase_07 | AC | 141 ms
54,396 KB |
testcase_08 | AC | 194 ms
54,968 KB |
testcase_09 | AC | 235 ms
55,020 KB |
ソースコード
import java.util.*; public class ok{ public static int aite(int x,int y,int m){ int a=x/(int)Math.pow(2,y-1); if(a%2==0)return a*(int)Math.pow(2,y-1)+(int)Math.pow(2,y-1); else return a*(int)Math.pow(2,y-1)-(int)Math.pow(2,y-1); } public static void main(String args[]){ Scanner sc=new Scanner(System.in); int m=sc.nextInt(); int n=(int)Math.pow(2,m); double s[]=new double[n]; for(int i=0;i<n;i++){ s[i]=sc.nextInt(); } double dp[][]=new double[m+1][n]; for(int i=0;i<n;i++){ dp[0][i]=1; } for(int i=1;i<=m;i++){ for(int j=0;j<n;j++){ int x=aite(j,i,m); for(int k=0;k<(int)Math.pow(2,i-1);k++){ dp[i][j]+=dp[i-1][j]*(dp[i-1][x+k]*(s[j]*s[j])/((s[j]*s[j])+(s[x+k]*s[x+k]))); } } } System.out.println(dp[m][0]); }}