結果
| 問題 | No.740 幻の木 | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2020-04-10 11:05:19 | 
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 5 ms / 2,000 ms | 
| コード長 | 416 bytes | 
| コンパイル時間 | 1,048 ms | 
| コンパイル使用メモリ | 66,048 KB | 
| 最終ジャッジ日時 | 2025-01-09 15:39:02 | 
| ジャッジサーバーID (参考情報) | judge5 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 6 | 
ソースコード
#include <iostream>
void solve() {
    int n, m, p, q;
    std::cin >> n >> m >> p >> q;
    --p;
    int i = 0;
    while (n > 0) {
        if (p <= i % 12 && i % 12 < p + q) {
            n -= m * 2;
        } else {
            n -= m;
        }
        ++i;
    }
    std::cout << i << std::endl;
}
int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);
    solve();
    return 0;
}
            
            
            
        