結果

問題 No.747 循環小数N桁目 Hard
ユーザー pppppp
提出日時 2018-10-25 23:54:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 4,528 bytes
コンパイル時間 942 ms
コンパイル使用メモリ 101,988 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-29 21:43:42
合計ジャッジ時間 9,458 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 RE -
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 WA -
testcase_07 RE -
testcase_08 WA -
testcase_09 AC 2 ms
5,376 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 2 ms
5,376 KB
testcase_22 WA -
testcase_23 AC 2 ms
5,376 KB
testcase_24 RE -
testcase_25 WA -
testcase_26 RE -
testcase_27 RE -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 2 ms
5,376 KB
testcase_31 RE -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 AC 2 ms
5,376 KB
testcase_40 WA -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 WA -
testcase_46 RE -
testcase_47 WA -
testcase_48 WA -
testcase_49 RE -
testcase_50 AC 2 ms
5,376 KB
testcase_51 RE -
testcase_52 RE -
testcase_53 AC 3 ms
5,376 KB
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 RE -
testcase_58 AC 4 ms
5,376 KB
testcase_59 RE -
testcase_60 WA -
testcase_61 RE -
testcase_62 WA -
testcase_63 WA -
testcase_64 RE -
testcase_65 AC 2 ms
5,376 KB
testcase_66 RE -
testcase_67 RE -
testcase_68 WA -
testcase_69 RE -
testcase_70 WA -
testcase_71 RE -
testcase_72 WA -
testcase_73 WA -
testcase_74 RE -
testcase_75 RE -
testcase_76 WA -
testcase_77 RE -
testcase_78 WA -
testcase_79 RE -
testcase_80 RE -
testcase_81 WA -
testcase_82 AC 2 ms
5,376 KB
testcase_83 RE -
testcase_84 RE -
testcase_85 WA -
testcase_86 AC 2 ms
5,376 KB
testcase_87 RE -
testcase_88 WA -
testcase_89 WA -
testcase_90 RE -
testcase_91 WA -
testcase_92 RE -
testcase_93 RE -
testcase_94 WA -
testcase_95 WA -
testcase_96 WA -
testcase_97 RE -
testcase_98 RE -
testcase_99 RE -
testcase_100 WA -
testcase_101 AC 2 ms
5,376 KB
testcase_102 RE -
testcase_103 WA -
testcase_104 WA -
testcase_105 AC 3 ms
5,376 KB
testcase_106 WA -
testcase_107 WA -
testcase_108 WA -
testcase_109 AC 2 ms
5,376 KB
testcase_110 WA -
testcase_111 WA -
testcase_112 WA -
testcase_113 WA -
testcase_114 AC 3 ms
5,376 KB
testcase_115 AC 2 ms
5,376 KB
testcase_116 AC 3 ms
5,376 KB
testcase_117 WA -
testcase_118 AC 3 ms
5,376 KB
testcase_119 WA -
testcase_120 AC 3 ms
5,376 KB
testcase_121 WA -
testcase_122 AC 2 ms
5,376 KB
testcase_123 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <fstream>
#include <iostream>
#include <algorithm>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <string>
#include <sstream>
#include <map>
#include <set>
#include <vector>
#include <stack>
#include <cmath>
#include <queue>
#include <random>

using namespace std;

#define INT_MAX_VALUE 2147483647
#define LONG_LONG_MAX_VALUE 9223372036854775807
#define ll long long
#define ld long double

struct XX{
    int s;
    int t;
};

class xxGreater {
public:
    bool operator()(const XX& riLeft, const XX& riRight) const {
        //第2条件
        if((riLeft.t) == (riRight.t)){
            return riLeft.s < riRight.s;//<:昇順(小さいものから順番)、>:降順(大きいものから順番)
            //プライオリティキューの場合は > で、top()すると値の小さいものがとれる
        }
        //第1条件
        return (riLeft.t) < (riRight.t);
    }
};


//map<long long,long long> prime_f(long long n){
//    map<long long,long long>res;
//    for(int i=2;i*i<=n;i++){
//        while(n%i==0){
//            ++res[i];
//            n/=i;
//        }
//    }
//    if(n!=1)res[n]=1;
//    return res;
//}

int n;
//int dat[2*10000000];
//int dat2[2*10000000];
int dat[10];
int dat2[10];

void init(int n_){
    n=1;
    while(n<n_)n*=2;
    for(int i=0;i<2*n-1;i++){
        dat[i]=0;
        dat2[i]=0;
    }
}

void initset(int k,int a){
    k+=n-1;
    dat[k]=a;
    while(k>0){
        k=(k-1)/2;
        dat[k]=dat[k*2+1]+dat[k*2+2];
    }
}

//[a,b)の間を[l,r]区間で比較しアップデート
//引数のindexに注意
//nは固定。initで計算すみ
//update2(L[i],R[i]+1,0,0,n,D[i]);
void update2(int a,int b,int k,int l,int r,int v){//v更新値、区間は0-index
    if(r<=a || b<=l)return;
    if(a<=l && r<=b){
        dat[k]+=dat2[k];
        if(r-l>1){
            dat2[k*2+1]+=dat2[k]/2;
            dat2[k*2+1]+=dat2[k]/2;
        }
        dat2[k]=v*(r-l);
        return;
    }else{
        update2(a,b,k*2+1,l,(l+r)/2,v);
        update2(a,b,k*2+2,(l+r)/2,r,v);
        return;
    }
}

int query(int a,int b,int k,int l,int r){
    if(r<=a || b<=l)return 0;
    if(a<=l && r<=b){
        dat[k]+=dat2[k];
        if(r-l>1){
            dat2[k*2+1]+=dat2[k]/2;
            dat2[k*2+1]+=dat2[k]/2;
        }
        dat2[k]=0;
        return dat[k];
    }
    else{
        int vl=query(a,b,k*2+1,l,(l+r)/2);
        int vr=query(a,b,k*2+2,(l+r)/2,r);
        return vl+vr;
    }
}




int main(int argc, const char * argv[])
{
    //scanf("%s",S);
    //scanf("%d",&N);
    //scanf("%lld %lld",&target1,&target2);
    //sscanf(tmp.c_str(),"%dd%d%d",&time[i], &dice[i], &z[i]);
    //getline(cin, target);
    //ifstream ifs("a.txt");//テスト用
    //ifs >> a;
    //ここから
    
    //入力高速化
    ios::sync_with_stdio(false);
    cin.tie(0);
    
    string N,K;
    cin >> N >> K;
    int sum=0;
    for(int i=0;i<N.size();i++){
        int tmp=*N.substr(i,1).c_str()-'0';
        sum+=tmp;
    }
    int ind=0;
    if((*N.substr(N.size()-1,1).c_str()-'0')%2==0){//
        if(sum%3==0){
            ind=6;
        }else if(sum%3==1){//+2で割り切れる
            ind=4;
        }else{//+4で割り切れる
            ind=2;
        }
    }else{
        if(sum%3==0){//+3で割り切れる
            ind=3;
        }else if(sum%3==1){//+5で割り切れる
            ind=1;
        }else{
            ind=5;
        }
    }
    int sum2=0;
    for(int i=0;i<N.size();i++){
        int tmp=*N.substr(i,1).c_str()-'0';
        sum2+=tmp;
    }
    int ind2=0;
    if((*K.substr(N.size()-1,1).c_str()-'0')%2==0){//
        if(sum2%3==0){
            ind2=6;
        }else if(sum2%3==1){//+2で割り切れる
            ind2=4;
        }else{//+4で割り切れる
            ind2=2;
        }
    }else{
        if(sum2%3==0){//+3で割り切れる
            ind2=3;
        }else if(sum2%3==1){//+5で割り切れる
            ind2=1;
        }else{
            ind2=5;
        }
    }
    if((ind+ind2)%6==0){
        cout << "4" << endl;
    }else if((ind+ind2)%6==5){
        cout << "1" << endl;
    }else if((ind+ind2)%6==4){
        cout << "7" << endl;
    }else if((ind+ind2)%6==3){
        cout << "5" << endl;
    }else if((ind+ind2)%6==2){
        cout << "8" << endl;
    }else{
        cout << "2" << endl;
    }
    
    
    
    //ここまで
    //cout << "ans" << endl;
    //printf("%.0f\n",ans);//小数点以下表示なし
    //printf("%.7f\n",p);
    
    return 0;
}
0