結果

問題 No.80 四角形を描こう
ユーザー taktak
提出日時 2018-06-14 12:22:01
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 315 bytes
コンパイル時間 16,591 ms
コンパイル使用メモリ 191,052 KB
実行使用メモリ 36,096 KB
最終ジャッジ日時 2024-06-30 14:21:10
合計ジャッジ時間 11,787 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 344 ms
34,680 KB
testcase_01 AC 342 ms
35,036 KB
testcase_02 AC 340 ms
34,644 KB
testcase_03 AC 341 ms
34,164 KB
testcase_04 AC 341 ms
34,800 KB
testcase_05 AC 343 ms
35,040 KB
testcase_06 RE -
testcase_07 AC 340 ms
34,152 KB
testcase_08 AC 342 ms
34,692 KB
testcase_09 AC 344 ms
34,708 KB
testcase_10 AC 341 ms
35,112 KB
testcase_11 AC 345 ms
34,956 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (544 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 (|ODD|EVE|) n = 
    match n%2,n with
    | 0,x -> EVE x
    | _,x -> ODD x

let genTakableEdgeLengthList = function
    | ODD x -> [1 .. (x/2)+1]
    | EVE x -> [1 .. (x/2)  ] 

let D = stdin.ReadLine() |> int

D/2
|> genTakableEdgeLengthList
|> List.map (fun x -> x * (D/2-x))
|> List.max
|> printfn "%i"     
0