結果

問題 No.338 アンケート機能
ユーザー wotsushiwotsushi
提出日時 2017-01-28 10:08:39
言語 Ruby
(3.4.1)
結果
AC  
実行時間 526 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 64,512 KB
最終ジャッジ日時 2024-12-23 20:38:09
合計ジャッジ時間 17,296 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 485 ms
64,512 KB
testcase_01 AC 502 ms
64,256 KB
testcase_02 AC 501 ms
64,256 KB
testcase_03 AC 497 ms
64,384 KB
testcase_04 AC 501 ms
64,384 KB
testcase_05 AC 505 ms
64,128 KB
testcase_06 AC 451 ms
64,256 KB
testcase_07 AC 450 ms
64,256 KB
testcase_08 AC 500 ms
64,256 KB
testcase_09 AC 454 ms
64,128 KB
testcase_10 AC 462 ms
64,384 KB
testcase_11 AC 498 ms
64,256 KB
testcase_12 AC 451 ms
64,384 KB
testcase_13 AC 500 ms
64,256 KB
testcase_14 AC 460 ms
64,384 KB
testcase_15 AC 450 ms
64,384 KB
testcase_16 AC 499 ms
64,256 KB
testcase_17 AC 456 ms
64,256 KB
testcase_18 AC 499 ms
64,256 KB
testcase_19 AC 457 ms
64,384 KB
testcase_20 AC 469 ms
64,256 KB
testcase_21 AC 514 ms
64,256 KB
testcase_22 AC 497 ms
64,256 KB
testcase_23 AC 509 ms
64,256 KB
testcase_24 AC 485 ms
64,128 KB
testcase_25 AC 469 ms
64,256 KB
testcase_26 AC 507 ms
64,256 KB
testcase_27 AC 497 ms
64,256 KB
testcase_28 AC 503 ms
64,256 KB
testcase_29 AC 526 ms
64,256 KB
testcase_30 AC 474 ms
64,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

A, B = gets.split.map(&:to_i)
ans = [*(0..1000)].product([*(0..1000)]).select {|a, b|
  (a + b) * (2 * A - 1) <= 200 * a and 200 * a < (a + b) * (2 * A + 1) and
  (a + b) * (2 * B - 1) <= 200 * b and 200 * b < (a + b) * (2 * B + 1)}.map {|(a, b)| a + b}.min
puts ans
0