結果

問題 No.1236 長針と短針
ユーザー ButterflvButterflv
提出日時 2024-08-11 15:07:47
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 819 bytes
コンパイル時間 2,857 ms
コンパイル使用メモリ 244,372 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-08-11 15:07:51
合計ジャッジ時間 3,933 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 WA -
testcase_02 AC 2 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

// #define _GLIBCXX_DEBUG
#include<bits/stdc++.h>
using namespace std;

int A,B;

double time_mod(double x){
  while(x>0)x-=360;
  while(x<0)x+=360;
  if(abs(x)<abs(x-360))return x;
  return x-360;
}

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
  cout<<fixed<<setprecision(15);

  cin>>A>>B;A%=12;

  double init_A=(double)(360*A)/12 + double(B*360)/(60*12);
  double init_B=(double)(360*B)/60;

  double now_A=init_A,now_B=init_B;

  if(time_mod(now_A-now_B)==0.0){
    cout<<0<<endl;
    return 0;
  }

  for(int s=0;s<1e6;s++){
    double diff_A=(double)(360*s)/(60*60*12);
    double diff_B=(double)(360*s)/(60*60);
    if(time_mod(now_A-now_B)*time_mod((init_A+diff_A)-(init_B+diff_B))<=0){
      cout<<s<<endl;
      return 0;
    }
    now_A=init_A+diff_A;
    now_B=init_B+diff_B;
  }
}
0