結果
問題 | No.476 正しくない平均 |
ユーザー | mesh1neko |
提出日時 | 2017-02-08 21:29:26 |
言語 | Ruby (3.4.1) |
結果 |
AC
|
実行時間 | 104 ms / 2,000 ms |
コード長 | 182 bytes |
コンパイル時間 | 57 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-12-25 16:57:10 |
合計ジャッジ時間 | 4,294 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 26 |
コンパイルメッセージ
Main.rb:2: warning: assigned but unused variable - n Syntax OK
ソースコード
#!/bin/ruby n,a=gets.split.map(&:to_i) list = gets.split.map(&:to_i) sum = 0 for i in list do sum += i end if sum.to_f / list.size === a puts %(YES) else puts %(NO) end