結果

問題 No.188 HAPPY DAY
ユーザー kuuso1kuuso1
提出日時 2016-08-18 18:51:41
言語 F#
(F# 4.0)
結果
AC  
実行時間 305 ms / 1,000 ms
コード長 632 bytes
コンパイル時間 12,572 ms
コンパイル使用メモリ 188,872 KB
実行使用メモリ 34,336 KB
最終ジャッジ日時 2024-06-09 21:40:11
合計ジャッジ時間 13,626 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
34,336 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (283 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 #

open System
type Sol() =
    member this.Solve() = 
        
        let happyDays m ds = 
            ds |> Seq.filter (fun d -> ((d%10) + (d/10)) = m ) |> Seq.length
        
        let y2015 = [
            (1,[1..31]);
            (2,[1..28]);
            (3,[1..31]);
            (4,[1..30]);
            (5,[1..31]);
            (6,[1..30]);
            (7,[1..31]);
            (8,[1..31]);
            (9,[1..30]);
            (10,[1..31]);
            (11,[1..30]);
            (12,[1..31]) ]
        
        y2015 |> Seq.sumBy (fun (m,ds) -> happyDays m ds ) |> printfn "%d"
        
let mySol = new Sol()
mySol.Solve()
0