結果

問題 No.338 アンケート機能
ユーザー wotsushiwotsushi
提出日時 2017-01-28 10:08:39
言語 Ruby
(3.3.0)
結果
AC  
実行時間 440 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 64,640 KB
最終ジャッジ日時 2024-06-06 07:35:39
合計ジャッジ時間 14,170 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 407 ms
64,640 KB
testcase_01 AC 424 ms
64,384 KB
testcase_02 AC 423 ms
64,128 KB
testcase_03 AC 418 ms
64,256 KB
testcase_04 AC 427 ms
64,256 KB
testcase_05 AC 416 ms
64,384 KB
testcase_06 AC 379 ms
64,256 KB
testcase_07 AC 373 ms
64,256 KB
testcase_08 AC 419 ms
64,256 KB
testcase_09 AC 377 ms
64,000 KB
testcase_10 AC 380 ms
64,384 KB
testcase_11 AC 423 ms
64,128 KB
testcase_12 AC 385 ms
64,384 KB
testcase_13 AC 417 ms
64,384 KB
testcase_14 AC 395 ms
64,256 KB
testcase_15 AC 376 ms
64,256 KB
testcase_16 AC 422 ms
64,256 KB
testcase_17 AC 379 ms
64,128 KB
testcase_18 AC 414 ms
64,384 KB
testcase_19 AC 385 ms
64,384 KB
testcase_20 AC 387 ms
64,256 KB
testcase_21 AC 427 ms
64,128 KB
testcase_22 AC 412 ms
64,384 KB
testcase_23 AC 440 ms
64,256 KB
testcase_24 AC 420 ms
64,128 KB
testcase_25 AC 382 ms
64,128 KB
testcase_26 AC 417 ms
64,256 KB
testcase_27 AC 409 ms
64,128 KB
testcase_28 AC 420 ms
64,256 KB
testcase_29 AC 416 ms
64,256 KB
testcase_30 AC 391 ms
64,128 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