結果

問題 No.740 幻の木
ユーザー manhattanermanhattaner
提出日時 2018-11-02 19:18:04
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 273 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-11-20 14:34:37
合計ジャッジ時間 2,002 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
12,288 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 AC 93 ms
12,288 KB
testcase_03 AC 88 ms
12,288 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 89 ms
12,160 KB
testcase_07 WA -
testcase_08 AC 89 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N,M,P,Q = gets.split.map(&:to_i)

Year = 12*M + Q*M

n = N / Year
remain = N % Year

drop = 0
r = 0
for i in 1..11 do
    drop += M
    if P <= i && i <= (P+Q - 1) then
        drop += M
    end
    if drop > remain then
        break
    end
    r += 1
end

puts n*12 + r
0