結果

問題 No.480 合計
ユーザー ichibanshiboriichibanshibori
提出日時 2017-02-10 22:21:23
言語 F#
(F# 4.0)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 87 bytes
コンパイル時間 16,094 ms
コンパイル使用メモリ 185,932 KB
実行使用メモリ 34,932 KB
最終ジャッジ日時 2024-12-14 09:08:54
合計ジャッジ時間 15,909 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 351 ms
34,436 KB
testcase_01 AC 352 ms
34,800 KB
testcase_02 AC 349 ms
34,672 KB
testcase_03 AC 353 ms
34,648 KB
testcase_04 AC 352 ms
34,544 KB
testcase_05 AC 349 ms
34,432 KB
testcase_06 AC 348 ms
34,676 KB
testcase_07 AC 351 ms
33,776 KB
testcase_08 AC 352 ms
34,932 KB
testcase_09 AC 350 ms
34,412 KB
testcase_10 AC 354 ms
34,544 KB
testcase_11 AC 349 ms
34,524 KB
testcase_12 AC 350 ms
34,404 KB
testcase_13 AC 348 ms
34,412 KB
testcase_14 AC 348 ms
34,036 KB
testcase_15 AC 350 ms
33,904 KB
testcase_16 AC 348 ms
34,676 KB
testcase_17 AC 351 ms
34,404 KB
testcase_18 AC 351 ms
34,688 KB
testcase_19 AC 350 ms
34,416 KB
testcase_20 AC 352 ms
34,668 KB
testcase_21 AC 353 ms
34,668 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (326 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 () =
    let n = stdin.ReadLine() |> int

    seq {1..n} |> Seq.sum |> printfn "%d"
0