結果

問題 No.480 合計
ユーザー pekempeypekempey
提出日時 2017-02-10 22:20:44
言語 F#
(F# 4.0)
結果
AC  
実行時間 340 ms / 2,000 ms
コード長 67 bytes
コンパイル時間 15,633 ms
コンパイル使用メモリ 187,180 KB
実行使用メモリ 35,000 KB
最終ジャッジ日時 2024-05-08 07:08:01
合計ジャッジ時間 24,534 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 336 ms
34,868 KB
testcase_01 AC 327 ms
33,972 KB
testcase_02 AC 334 ms
34,068 KB
testcase_03 AC 333 ms
34,728 KB
testcase_04 AC 340 ms
34,000 KB
testcase_05 AC 337 ms
35,000 KB
testcase_06 AC 330 ms
34,868 KB
testcase_07 AC 329 ms
34,612 KB
testcase_08 AC 330 ms
33,936 KB
testcase_09 AC 325 ms
34,744 KB
testcase_10 AC 333 ms
34,872 KB
testcase_11 AC 327 ms
34,492 KB
testcase_12 AC 318 ms
34,744 KB
testcase_13 AC 316 ms
34,744 KB
testcase_14 AC 322 ms
34,600 KB
testcase_15 AC 320 ms
34,844 KB
testcase_16 AC 315 ms
34,448 KB
testcase_17 AC 325 ms
34,748 KB
testcase_18 AC 321 ms
34,600 KB
testcase_19 AC 323 ms
34,748 KB
testcase_20 AC 329 ms
34,744 KB
testcase_21 AC 322 ms
34,744 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (286 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 n = stdin.ReadLine() |> int
List.sum [1 .. n] |> printfn "%d" 
0