結果

問題 No.1185 完全な3の倍数
ユーザー CaliforniumerCaliforniumer
提出日時 2020-08-22 17:53:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 854 bytes
コンパイル時間 2,323 ms
コンパイル使用メモリ 168,976 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-15 11:45:09
合計ジャッジ時間 42,109 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main() {
    long long N;cin>>N;
    vector<long long>F{3,30,300,3000,30000,300000,3000000,30000000,300000000};
    if(N<300)cout<<N/3-3<<endl;
    else{
        long long K=30;
        /*string S=to_string(N);int U=((S[0]-'0')-1)/3;
        for(int X=0;X<S.size()-1;X++){
            U*=4;
        }
        K+=U;
            S.erase(0,1);int F=stoi(S);*/
            for(long long X=300;X<=N;X+=3){
                string M=to_string(X);bool J=false;
                if((M[0]-'0')%3!=0)X=((M[0]-'0')/3+1)*(F[M.size()-1]);
                for(int Y=0;Y<M.size();Y++){
                    if(((int)(M[Y]-'0'))%3!=0){
                        J=true;break;
                    }
                }
                if(!J){
                  K++;
                }
            }
        cout<<K<<endl;
    }
}
0