結果
| 問題 | No.143 豆 |
| コンテスト | |
| ユーザー |
horiesiniti
|
| 提出日時 | 2016-06-05 12:37:30 |
| 言語 | Ruby (4.0.2) |
| 結果 |
AC
|
| 実行時間 | 54 ms / 1,000 ms |
| コード長 | 141 bytes |
| 記録 | |
| コンパイル時間 | 44 ms |
| コンパイル使用メモリ | 8,960 KB |
| 実行使用メモリ | 14,976 KB |
| 最終ジャッジ日時 | 2026-04-03 13:52:03 |
| 合計ジャッジ時間 | 1,592 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 17 |
コンパイルメッセージ
Main.rb:8: warning: ambiguous first argument; put parentheses or a space even after `-` operator Main.rb:1: warning: assigned but unused variable - f Syntax OK
ソースコード
n,k,f=STDIN.gets.split(" ")
a=n.to_i*k.to_i
as=STDIN.gets.split(" ")
as.size.times do |i|
a-=as[i].to_i
end
if a<0
puts -1
else
puts a
end
horiesiniti