結果

問題 No.1586 Equal Array
コンテスト
ユーザー kou_kkk
提出日時 2026-09-10 15:15:08
言語 F#
(F# 10.0 + ACL)
コンパイル:
fsharp_c _filename_
実行:
/usr/bin/dotnet_wrap
結果
WA  
実行時間 -
コード長 197 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 4,979 ms
コンパイル使用メモリ 211,716 KB
実行使用メモリ 54,528 KB
最終ジャッジ日時 2026-09-10 15:15:22
合計ジャッジ時間 9,132 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2 WA * 1
other AC * 14 WA * 6
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (181 ミリ秒)。
  main -> /home/judge/data/code/bin/Release/net10.0/main.dll
  main -> /home/judge/data/code/bin/Release/net10.0/publish/

ソースコード

diff #
raw source code

let n = stdin.ReadLine() |> int
let a =
    stdin.ReadLine().Split()
    |> Array.map (Seq.last >> string >> int)

let sum = Array.sum a

if sum % n = 0 then
    "Yes"
else
    "No"
|> printfn "%s"
0