結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 435 ms
64,384 KB
testcase_01 AC 472 ms
64,000 KB
testcase_02 AC 465 ms
64,000 KB
testcase_03 AC 467 ms
64,128 KB
testcase_04 WA -
testcase_05 AC 464 ms
63,744 KB
testcase_06 WA -
testcase_07 AC 410 ms
63,872 KB
testcase_08 AC 455 ms
63,872 KB
testcase_09 AC 416 ms
64,000 KB
testcase_10 AC 419 ms
63,872 KB
testcase_11 AC 477 ms
64,128 KB
testcase_12 AC 414 ms
63,872 KB
testcase_13 AC 460 ms
63,872 KB
testcase_14 AC 412 ms
63,872 KB
testcase_15 AC 412 ms
63,872 KB
testcase_16 AC 456 ms
64,000 KB
testcase_17 AC 413 ms
64,128 KB
testcase_18 AC 471 ms
64,128 KB
testcase_19 AC 423 ms
63,744 KB
testcase_20 AC 430 ms
64,000 KB
testcase_21 AC 469 ms
64,000 KB
testcase_22 AC 461 ms
63,744 KB
testcase_23 AC 446 ms
63,872 KB
testcase_24 AC 472 ms
64,000 KB
testcase_25 AC 421 ms
64,128 KB
testcase_26 AC 460 ms
64,128 KB
testcase_27 AC 436 ms
63,872 KB
testcase_28 AC 443 ms
64,000 KB
testcase_29 AC 457 ms
64,128 KB
testcase_30 AC 424 ms
64,000 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