結果

問題 No.319 happy b1rthday 2 me
ユーザー beetbeet
提出日時 2018-11-13 17:32:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 904 bytes
コンパイル時間 1,808 ms
コンパイル使用メモリ 200,960 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-06 19:42:16
合計ジャッジ時間 2,972 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;
template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}

//INSERT ABOVE HERE
Int calc(Int x){
  Int res=0;
  // *12*
  {
    Int t=1,y=x;
    while(12<=y){
      Int z=y%100;
      if(13<=z){
        res+=(y/100+1)*t;
      }else{
        res+=(y/100)*t;
        if(12<=z) res+=x%t+1;
      }
      t*=10;
      y/=10;
    }
  }
  // *1, 2*
  {
    if(2<=x) res++;
    Int a=2,b=1,t=1;
    while(a*10+2<=x){
      res+=t;
      a=a*10+9;
      b=b*10;
      t=t*10;
    }
    if(b*20+2<=x){
      res+=(x-b*20)/10;
      if(x%10>=2) res++;
    }
  }
  return res;
}

signed main(){
  Int a,b;
  cin>>a>>b;
  Int ans=calc(b)-calc(a-1);
  string s=to_string(a);
  if(s.front()=='2'&&s.back()=='2') ans--;
  cout<<ans<<endl;
  return 0;
}
0