結果

問題 No.480 合計
ユーザー chike_pluschike_plus
提出日時 2019-03-19 09:39:55
言語 F#
(.NET 7)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 87 bytes
コンパイル時間 4,510 ms
コンパイル使用メモリ 158,348 KB
実行使用メモリ 24,388 KB
最終ジャッジ日時 2023-10-11 13:45:32
合計ジャッジ時間 7,056 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
20,336 KB
testcase_01 AC 59 ms
22,328 KB
testcase_02 AC 57 ms
22,212 KB
testcase_03 AC 58 ms
20,304 KB
testcase_04 AC 58 ms
22,332 KB
testcase_05 AC 58 ms
22,356 KB
testcase_06 AC 58 ms
20,304 KB
testcase_07 AC 59 ms
22,360 KB
testcase_08 AC 59 ms
22,344 KB
testcase_09 AC 58 ms
24,200 KB
testcase_10 AC 59 ms
24,348 KB
testcase_11 AC 57 ms
20,292 KB
testcase_12 AC 58 ms
22,384 KB
testcase_13 AC 58 ms
22,216 KB
testcase_14 AC 58 ms
22,332 KB
testcase_15 AC 58 ms
22,224 KB
testcase_16 AC 59 ms
22,212 KB
testcase_17 AC 59 ms
22,340 KB
testcase_18 AC 59 ms
24,256 KB
testcase_19 AC 61 ms
24,388 KB
testcase_20 AC 58 ms
22,212 KB
testcase_21 AC 60 ms
22,280 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) F# Compiler version 11.0.0.0 for F# 5.0
Copyright (c) Microsoft Corporation. All Rights Reserved.

ソースコード

diff #

open System

let N = Console.ReadLine() |> int
[1..N]
|> List.sum
|> Console.WriteLine 
0