結果

問題 No.508 超ゆとり教育
ユーザー taktak
提出日時 2019-06-10 15:44:40
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 147 bytes
コンパイル時間 6,362 ms
コンパイル使用メモリ 185,688 KB
実行使用メモリ 37,376 KB
最終ジャッジ日時 2024-04-15 20:22:31
合計ジャッジ時間 8,800 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ(β)

テストケース

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

module Yuki

open System

let pi = bigint 3

let solve n =
    pi * n * n

let n = Console.ReadLine() |> int |> bigint
solve n
|> Console.WriteLine
0