結果

問題 No.276 連続する整数の和(1)
ユーザー LeonardoneLeonardone
提出日時 2015-12-07 06:44:30
言語 F#
(F# 4.0)
結果
AC  
実行時間 340 ms / 1,000 ms
コード長 157 bytes
コンパイル時間 16,457 ms
コンパイル使用メモリ 184,772 KB
実行使用メモリ 34,464 KB
最終ジャッジ日時 2024-09-14 18:09:47
合計ジャッジ時間 21,033 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 338 ms
34,340 KB
testcase_01 AC 334 ms
34,432 KB
testcase_02 AC 335 ms
33,908 KB
testcase_03 AC 337 ms
34,460 KB
testcase_04 AC 335 ms
34,204 KB
testcase_05 AC 336 ms
33,796 KB
testcase_06 AC 340 ms
34,040 KB
testcase_07 AC 336 ms
34,464 KB
testcase_08 AC 337 ms
33,668 KB
testcase_09 AC 337 ms
33,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (918 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 #

// yukicoder My Practice
// author: Leonardone @ NEETSDKASU

open System

let n = int64(Console.ReadLine())

printf "%d" <| if n % 2L = 0L then n / 2L else n
0