結果

問題 No.216 FAC
ユーザー yamaghyamagh
提出日時 2015-08-17 22:12:33
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 233 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-07-18 10:03:35
合計ジャッジ時間 2,878 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,160 KB
testcase_01 AC 77 ms
12,416 KB
testcase_02 AC 73 ms
12,160 KB
testcase_03 AC 75 ms
12,288 KB
testcase_04 AC 76 ms
12,288 KB
testcase_05 AC 75 ms
12,160 KB
testcase_06 AC 73 ms
12,160 KB
testcase_07 AC 75 ms
12,288 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 74 ms
12,160 KB
testcase_12 WA -
testcase_13 AC 73 ms
12,032 KB
testcase_14 WA -
testcase_15 AC 74 ms
12,288 KB
testcase_16 AC 75 ms
12,288 KB
testcase_17 AC 77 ms
12,288 KB
testcase_18 WA -
testcase_19 AC 74 ms
12,288 KB
testcase_20 WA -
testcase_21 AC 73 ms
12,160 KB
testcase_22 AC 73 ms
12,288 KB
testcase_23 AC 73 ms
12,288 KB
testcase_24 WA -
testcase_25 AC 72 ms
12,160 KB
testcase_26 AC 73 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N=gets.to_i
a=gets.split.map(&:to_i)
b=gets.split.map(&:to_i)
k_score=[b,a].transpose.select{|s|s[0]==0}.inject(0){|s,m|s+m[1]}
e_score=[b,a].transpose.select{|s|s[0]!=0}.inject(0){|s,m|s+m[1]}
puts e_score <= k_score ? "YES" : "NO"
0