結果

問題 No.212 素数サイコロと合成数サイコロ (2)
ユーザー taktak
提出日時 2018-06-18 16:32:42
言語 F#
(F# 4.0)
結果
AC  
実行時間 96 ms / 5,000 ms
コード長 406 bytes
コンパイル時間 14,721 ms
コンパイル使用メモリ 184,896 KB
実行使用メモリ 32,512 KB
最終ジャッジ日時 2024-06-30 16:57:15
合計ジャッジ時間 8,362 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
32,356 KB
testcase_01 AC 96 ms
32,512 KB
testcase_02 AC 94 ms
32,356 KB
testcase_03 AC 92 ms
32,128 KB
testcase_04 AC 94 ms
32,256 KB
testcase_05 AC 93 ms
32,256 KB
testcase_06 AC 91 ms
32,128 KB
testcase_07 AC 94 ms
32,128 KB
testcase_08 AC 95 ms
32,360 KB
testcase_09 AC 89 ms
32,384 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (402 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

let pDice = [2; 3; 5; 7; 11; 13]
let cDice = [4; 6; 8; 9; 10; 12]
let calExp xs = 
    xs 
    |> List.map float |> List.sum 
    |> fun x -> x/(xs |> List.length |> float)

let pExp = pDice |> calExp
let cExp = cDice |> calExp

let P, C = let t = stdin.ReadLine().Split() |> Array.map int
           in t.[0], t.[1]

let ans = 
    let p = pown pExp P
    let c = pown cExp C
    p*c

ans |> printfn "%A" 
0