結果

問題 No.338 アンケート機能
ユーザー wotsushiwotsushi
提出日時 2017-01-28 10:03:45
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 267 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 64,512 KB
最終ジャッジ日時 2024-06-06 07:35:15
合計ジャッジ時間 15,863 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 460 ms
64,512 KB
testcase_01 AC 471 ms
64,256 KB
testcase_02 AC 476 ms
64,128 KB
testcase_03 AC 473 ms
64,384 KB
testcase_04 WA -
testcase_05 AC 479 ms
64,000 KB
testcase_06 WA -
testcase_07 AC 424 ms
64,128 KB
testcase_08 AC 472 ms
64,128 KB
testcase_09 AC 427 ms
64,384 KB
testcase_10 AC 435 ms
64,256 KB
testcase_11 AC 472 ms
64,384 KB
testcase_12 AC 427 ms
64,384 KB
testcase_13 AC 471 ms
64,000 KB
testcase_14 AC 435 ms
64,256 KB
testcase_15 AC 424 ms
64,128 KB
testcase_16 AC 472 ms
64,256 KB
testcase_17 AC 428 ms
64,256 KB
testcase_18 AC 472 ms
64,128 KB
testcase_19 AC 435 ms
64,000 KB
testcase_20 AC 439 ms
64,000 KB
testcase_21 AC 471 ms
64,256 KB
testcase_22 AC 465 ms
63,872 KB
testcase_23 AC 467 ms
63,872 KB
testcase_24 AC 449 ms
64,256 KB
testcase_25 AC 435 ms
64,256 KB
testcase_26 AC 475 ms
64,256 KB
testcase_27 AC 464 ms
64,000 KB
testcase_28 AC 464 ms
64,128 KB
testcase_29 AC 470 ms
63,872 KB
testcase_30 AC 436 ms
64,128 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

A, B = gets.split.map(&:to_i)
ans = [*(1..1000)].product([*(1..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