結果
問題 | No.740 幻の木 |
ユーザー | @abcde |
提出日時 | 2019-02-27 00:43:59 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 626 bytes |
コンパイル時間 | 1,523 ms |
コンパイル使用メモリ | 159,500 KB |
実行使用メモリ | 13,888 KB |
最終ジャッジ日時 | 2024-06-23 04:58:42 |
合計ジャッジ時間 | 6,426 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
13,888 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | WA | - |
testcase_05 | TLE | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { // 1. 入力情報取得. int N, M, P, Q; cin >> N >> M >> P >> Q; Q += P; Q--; // 2. 葉を全て落とすのは何か月目? int ans = 0; int month = 1; while(N){ ans++; // 葉を落とす(通常の期間). N -= M; // 葉を落とす(風の強い期間, P ~ Q月と設定). if(P <= month && month <= Q) N -= M; // 年度更新. month++; if(month > 12) month -= 12; } // 3. 出力 ~ 終了. cout << ans << endl; return 0; }