結果

問題 No.211 素数サイコロと合成数サイコロ (1)
ユーザー regeregeregerege
提出日時 2017-04-18 22:17:15
言語 F#
(F# 4.0)
結果
AC  
実行時間 87 ms / 1,000 ms
コード長 238 bytes
コンパイル時間 7,420 ms
コンパイル使用メモリ 188,148 KB
実行使用メモリ 31,232 KB
最終ジャッジ日時 2024-06-25 23:30:49
合計ジャッジ時間 11,591 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
30,848 KB
testcase_01 AC 86 ms
30,848 KB
testcase_02 AC 87 ms
30,592 KB
testcase_03 AC 87 ms
30,684 KB
testcase_04 AC 86 ms
30,812 KB
testcase_05 AC 86 ms
30,848 KB
testcase_06 AC 85 ms
30,848 KB
testcase_07 AC 85 ms
30,848 KB
testcase_08 AC 86 ms
30,848 KB
testcase_09 AC 85 ms
30,968 KB
testcase_10 AC 84 ms
30,592 KB
testcase_11 AC 87 ms
30,592 KB
testcase_12 AC 86 ms
30,824 KB
testcase_13 AC 85 ms
30,592 KB
testcase_14 AC 85 ms
30,976 KB
testcase_15 AC 86 ms
30,716 KB
testcase_16 AC 85 ms
30,684 KB
testcase_17 AC 85 ms
30,848 KB
testcase_18 AC 86 ms
30,928 KB
testcase_19 AC 85 ms
30,976 KB
testcase_20 AC 86 ms
30,976 KB
testcase_21 AC 85 ms
30,976 KB
testcase_22 AC 85 ms
31,104 KB
testcase_23 AC 87 ms
30,976 KB
testcase_24 AC 85 ms
30,848 KB
testcase_25 AC 84 ms
30,684 KB
testcase_26 AC 86 ms
30,684 KB
testcase_27 AC 86 ms
30,804 KB
testcase_28 AC 84 ms
30,684 KB
testcase_29 AC 84 ms
30,720 KB
testcase_30 AC 85 ms
30,716 KB
testcase_31 AC 86 ms
31,232 KB
testcase_32 AC 84 ms
30,848 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (264 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 p = [2;3;5;7;11;13]
let c = [4;6;8;9;10;12]
let s = List.collect (fun x -> List.map (fun y -> x*y) c) p
let calc (n:int) = decimal(n) / 36M
let N = stdin.ReadLine() |> int
s |> List.filter ((=)N) |> List.length
|> calc
|> printfn "%M"
0