結果

問題 No.80 四角形を描こう
ユーザー taktak
提出日時 2018-06-14 12:29:57
言語 F#
(F# 4.0)
結果
AC  
実行時間 337 ms / 5,000 ms
コード長 357 bytes
コンパイル時間 16,829 ms
コンパイル使用メモリ 190,776 KB
実行使用メモリ 35,116 KB
最終ジャッジ日時 2024-06-30 14:20:23
合計ジャッジ時間 21,887 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 324 ms
33,980 KB
testcase_01 AC 334 ms
34,896 KB
testcase_02 AC 326 ms
34,808 KB
testcase_03 AC 331 ms
34,112 KB
testcase_04 AC 335 ms
34,668 KB
testcase_05 AC 337 ms
34,916 KB
testcase_06 AC 326 ms
34,200 KB
testcase_07 AC 332 ms
34,652 KB
testcase_08 AC 334 ms
34,412 KB
testcase_09 AC 321 ms
34,960 KB
testcase_10 AC 336 ms
35,116 KB
testcase_11 AC 327 ms
34,264 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (449 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 (|ZERO|ODD|EVE|) n = 
    match n%2,n with
    | _,0 -> ZERO
    | 0,x -> EVE x
    | _,x -> ODD x

let genTakableEdgeLengthList = function
    | ZERO  -> [0]
    | 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