結果

問題 No.2194 兄弟の掛け引き
ユーザー simansiman
提出日時 2023-01-20 21:44:54
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 149 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-06-23 09:40:40
合計ジャッジ時間 3,062 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
13,824 KB
testcase_01 AC 96 ms
13,696 KB
testcase_02 AC 96 ms
13,568 KB
testcase_03 AC 100 ms
13,568 KB
testcase_04 AC 95 ms
13,696 KB
testcase_05 AC 95 ms
13,696 KB
testcase_06 AC 94 ms
13,440 KB
testcase_07 AC 95 ms
13,824 KB
testcase_08 AC 98 ms
13,440 KB
testcase_09 AC 95 ms
13,568 KB
testcase_10 AC 96 ms
13,440 KB
testcase_11 AC 97 ms
13,568 KB
testcase_12 AC 94 ms
13,440 KB
testcase_13 AC 100 ms
13,568 KB
testcase_14 WA -
testcase_15 AC 94 ms
13,568 KB
testcase_16 AC 96 ms
13,440 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:6: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

A, B, C = gets.split.map(&:to_i)

res = [*1..100_000].select { |n| v = n * A; v -= B if v > B; v == C }

if res.empty?
  puts -1
else
  puts res
end
0