結果

問題 No.1185 完全な3の倍数
ユーザー hangin-svghangin-svg
提出日時 2021-06-10 05:08:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 593 bytes
コンパイル時間 1,391 ms
コンパイル使用メモリ 166,548 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-06 22:14:00
合計ジャッジ時間 2,641 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 1 ms
5,376 KB
testcase_12 WA -
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 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 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 WA -
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 1 ms
5,376 KB
testcase_35 WA -
testcase_36 AC 1 ms
5,376 KB
testcase_37 AC 1 ms
5,376 KB
testcase_38 AC 1 ms
5,376 KB
testcase_39 AC 2 ms
5,376 KB
testcase_40 WA -
testcase_41 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){

  int n;
  cin >> n;
  int i=0,j = n,l=j*10;
  while(j>9) {
    i++;
    j/=10;
    l/=10;
  }
  l%=10;
  
  //cout << n << ' ' << i << ' ' << j << ' ' << l << endl;
  int count;
  if(j==9) count =4;
  else if(j>=6) count = 3;
  else if(j>=3) count = 2;
  else count = 1;
  
  for(int k=0; k<i; k++) count *=4;
  //cout << count << endl;

  if(i>=1) count -= 4;
  else count=0;
  //cout << count << endl;

  int lim = min(n,99);
  for(int k=10; k<=lim; ++k) {
    if((k/10)%3!=0 && k%3==0 ) count ++;
  }

  cout << count << endl;
}
0