結果

問題 No.740 幻の木
コンテスト
ユーザー Rumain831
提出日時 2026-09-01 00:45:58
言語 C++23(gcc16)
(gcc 16.1.0 + boost 1.92.0)
コンパイル:
g++-16 -O2 -lm -std=c++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 1 ms / 2,000 ms
+ 357µs
コード長 388 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,350 ms
コンパイル使用メモリ 173,008 KB
実行使用メモリ 6,272 KB
最終ジャッジ日時 2026-09-01 00:46:31
合計ジャッジ時間 2,770 ms
ジャッジサーバーID
(参考情報)
judge1_0 / judge2_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 6
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
using ll = long long;

int main(void){
  int n, m, p, q; cin >> n >> m >> p >> q;
  int x=q*2*m+(12-q)*m, r=n%x;
  int ans=n/x*12;
  if(r==0) r=x, ans-=12;
  for(int i=1; i<=12; i++){
    int fall=(i<p||p+q<=i?m:2*m);
    if(r<=fall){
      cout << ans+i << endl; return 0;
    }
    r-=fall;
  }
  return 0; 
}
0