結果
問題 | No.555 世界史のレポート |
ユーザー | cympfh |
提出日時 | 2017-08-25 18:45:51 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 362 bytes |
コンパイル時間 | 74 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 12,288 KB |
最終ジャッジ日時 | 2024-10-15 15:42:01 |
合計ジャッジ時間 | 3,340 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 79 ms
12,032 KB |
testcase_01 | AC | 75 ms
12,160 KB |
testcase_02 | AC | 77 ms
12,032 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 79 ms
12,160 KB |
testcase_09 | AC | 83 ms
12,032 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 158 ms
12,160 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
n = gets.to_i c, v = gets.split.map(&:to_i) ans = nil n.times do |i| a, b, cost = 1, 0, 0 (i + 1).times do # c+v a, b, cost = 2 * a, a, cost + c + v # p ['c+v =>', a, b, cost] break if a >= n end while a < n # v a, b, cost = a + b, b, cost + v # p ['v =>', a, b, cost] end ans = ans == nil ? cost : [ans, cost].min end p ans