結果
| 問題 |
No.740 幻の木
|
| コンテスト | |
| ユーザー |
rhincodon66
|
| 提出日時 | 2018-10-05 21:31:34 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 4 ms / 2,000 ms |
| コード長 | 407 bytes |
| コンパイル時間 | 1,576 ms |
| コンパイル使用メモリ | 167,308 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-10-12 12:53:30 |
| 合計ジャッジ時間 | 1,924 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
#define pb push_back
#define mp make_pair
#define rep(i,n) for(int i=0;i<(n);++i)
int main(){
cin.tie(0);
ios::sync_with_stdio(false);
int n,m,p,q;cin >> n >> m >> p >> q;
int ans=0,i=1;
while(n>0){
if(i>=p && i<p+q){
n-=2*m;
}
else n-=m;
i++;
if(i>12) i=1;
ans++;
}
cout << ans << endl;
}
rhincodon66