結果

問題 No.970 数列変換マシン
ユーザー ikdikd
提出日時 2020-05-03 16:07:31
言語 F#
(F# 4.0)
結果
AC  
実行時間 758 ms / 2,000 ms
コード長 342 bytes
コンパイル時間 11,032 ms
コンパイル使用メモリ 193,304 KB
実行使用メモリ 68,568 KB
最終ジャッジ日時 2024-06-12 20:35:52
合計ジャッジ時間 25,560 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 752 ms
67,328 KB
testcase_01 AC 758 ms
67,056 KB
testcase_02 AC 750 ms
66,828 KB
testcase_03 AC 748 ms
67,840 KB
testcase_04 AC 741 ms
67,712 KB
testcase_05 AC 751 ms
68,568 KB
testcase_06 AC 725 ms
59,984 KB
testcase_07 AC 748 ms
67,228 KB
testcase_08 AC 743 ms
67,584 KB
testcase_09 AC 344 ms
34,424 KB
testcase_10 AC 346 ms
34,164 KB
testcase_11 AC 349 ms
34,704 KB
testcase_12 AC 345 ms
34,996 KB
testcase_13 AC 345 ms
34,528 KB
testcase_14 AC 352 ms
35,356 KB
testcase_15 AC 342 ms
33,728 KB
testcase_16 AC 342 ms
34,484 KB
testcase_17 AC 340 ms
34,308 KB
testcase_18 AC 341 ms
34,184 KB
testcase_19 AC 340 ms
34,188 KB
testcase_20 AC 339 ms
33,808 KB
testcase_21 AC 339 ms
33,888 KB
testcase_22 AC 338 ms
34,184 KB
testcase_23 AC 337 ms
33,804 KB
testcase_24 AC 338 ms
34,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (391 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 #

// Learn more about F# at http://fsharp.org

open System

[<EntryPoint>]
let main argv =
    let n = stdin.ReadLine() |> int
    let y = stdin.ReadLine().Split() |> Array.map int

    let s = y |> Array.sum
    y
    |> Array.map (fun v -> s - v - v * (n - 2))
    |> Array.iter (fun v -> printf "%d " v)
    0 // return an integer exit code
0