結果

問題 No.1849 Three Times Value
ユーザー Nzt3
提出日時 2022-04-03 21:39:21
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 10 ms / 2,000 ms
コード長 284 bytes
コンパイル時間 1,518 ms
コンパイル使用メモリ 169,080 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-24 05:11:01
合計ジャッジ時間 2,746 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  long long N;
  cin>>N;
  long long ans=0;
  for(int i=1;i<=100000;i++){
    string S=to_string(i);
    long long t=stoll(S+S+S);
    if(t<=N)ans+=1;
  }
  cout<<ans<<endl;
}
0