結果
| 問題 | No.476 正しくない平均 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-01-27 22:21:36 |
| 言語 | F# (F# 10.0) |
| 結果 |
AC
|
| 実行時間 | 62 ms / 2,000 ms |
| コード長 | 218 bytes |
| 記録 | |
| コンパイル時間 | 14,987 ms |
| コンパイル使用メモリ | 213,400 KB |
| 実行使用メモリ | 31,008 KB |
| 最終ジャッジ日時 | 2026-05-30 05:57:05 |
| 合計ジャッジ時間 | 17,869 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 26 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (332 ミリ秒)。 main -> /home/judge/data/code/bin/Release/net10.0/main.dll main -> /home/judge/data/code/bin/Release/net10.0/publish/
ソースコード
open System let n, a = Console.ReadLine().Split() |> Array.map int64 |> fun a -> a.[0], a.[1] let x = Console.ReadLine().Split() |> Array.map int64 |> Array.sum Console.WriteLine(if n * a = x then "YES" else "NO")