結果
| 問題 |
No.740 幻の木
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-10-05 21:26:22 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 373 bytes |
| コンパイル時間 | 557 ms |
| コンパイル使用メモリ | 64,600 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-10-12 12:48:36 |
| 合計ジャッジ時間 | 1,035 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 |
ソースコード
#include<iostream>
using namespace std;
#define inRange(x,a,b) (a <= x && x < b)
int main(){
int n, m, p, q;
cin >> n >> m >> p >> q;
int ans = 0;
while(1){
if(inRange((ans%12)+1, p, p+q)){
n -= 2*m;
}else{
n -= m;
}
ans++;
if(n <= 0) break;
}
cout << ans << endl;
return 0;
}