結果
問題 | No.740 幻の木 |
ユーザー | ut0s |
提出日時 | 2019-09-15 07:56:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 623 bytes |
コンパイル時間 | 1,369 ms |
コンパイル使用メモリ | 167,720 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-06 22:38:52 |
合計ジャッジ時間 | 1,813 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 1 ms
6,944 KB |
ソースコード
/** @file 740.cpp @title No.740 幻の木 - yukicoder @url https://yukicoder.me/problems/no/740 **/ #include <bits/stdc++.h> using namespace std; typedef long long LL; #define ALL(obj) (obj).begin(), (obj).end() #define REP(i, N) for (int i = 0; i < (N); ++i) int main() { LL N, M, P, Q; cin >> N >> M >> P >> Q; LL max_month = (N + M + 1) / M; for (LL i = 1; i <= max_month; i++) { LL month = (i % 12) == 0 ? 12 : i % 12; if (P <= month && month <= P + Q - 1) { N -= 2 * M; } else { N -= M; } if (N <= 0) { cout << i << endl; break; } } return 0; }