結果

問題 No.1015 おつりは要らないです
ユーザー sca1lsca1l
提出日時 2020-07-20 22:30:04
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 696 bytes
コンパイル時間 67 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 19,456 KB
最終ジャッジ日時 2024-06-06 21:44:35
合計ジャッジ時間 6,155 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 75 ms
12,160 KB
testcase_02 AC 71 ms
12,032 KB
testcase_03 AC 71 ms
12,160 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 73 ms
12,032 KB
testcase_07 AC 75 ms
12,032 KB
testcase_08 AC 71 ms
12,032 KB
testcase_09 AC 73 ms
12,032 KB
testcase_10 AC 132 ms
19,072 KB
testcase_11 AC 136 ms
18,944 KB
testcase_12 AC 133 ms
18,176 KB
testcase_13 AC 135 ms
18,304 KB
testcase_14 AC 134 ms
19,456 KB
testcase_15 AC 131 ms
18,176 KB
testcase_16 AC 134 ms
18,304 KB
testcase_17 AC 134 ms
19,200 KB
testcase_18 AC 131 ms
18,432 KB
testcase_19 AC 136 ms
18,176 KB
testcase_20 AC 139 ms
18,432 KB
testcase_21 AC 133 ms
18,176 KB
testcase_22 AC 135 ms
18,176 KB
testcase_23 AC 134 ms
17,920 KB
testcase_24 AC 138 ms
18,176 KB
testcase_25 AC 135 ms
18,304 KB
testcase_26 AC 136 ms
18,432 KB
testcase_27 AC 135 ms
18,048 KB
testcase_28 AC 164 ms
18,048 KB
testcase_29 AC 133 ms
18,304 KB
testcase_30 AC 71 ms
12,160 KB
testcase_31 AC 132 ms
18,432 KB
testcase_32 AC 131 ms
18,432 KB
testcase_33 AC 115 ms
19,456 KB
testcase_34 WA -
testcase_35 AC 75 ms
12,288 KB
testcase_36 AC 75 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n,x,y,z = gets.split.map(&:to_i)
a = gets.split.map(&:to_i)

ans = true
a.each{|v|
  yukichi = v/10000
  yukichi = z if yukichi > z
  yukichi = 0 if yukichi < 0
  v -= yukichi*10000
  z -= yukichi
  
  higuchi = v/5000
  higuchi = y if higuchi > y
  higuchi = 0 if higuchi < 0
  v -= higuchi*5000
  y -= higuchi
  
  noguchi = v/1000
  noguchi = x if noguchi > x
  noguchi = 0 if noguchi < 0
  v -= noguchi*1000
  x -= noguchi
  
  if 0 <= v && v <1000 && x > 0
    x -= 1
    v -= 1000
  end
  if 0 <= v && v <5000 && y > 0
    y -= 1
    v -= 5000
  end
  if 0 <= v && v < 10000 && z > 0
    z -= 1
    v -= 10000
  end
  
  if v >= 0
    ans = false
    break
  end
}

puts ans ? "Yes" : "No"
0