結果

問題 No.2868 Another String of yuusaan
ユーザー yuusaanyuusaan
提出日時 2024-06-28 08:09:03
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 887 bytes
コンパイル時間 2,835 ms
コンパイル使用メモリ 247,092 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-08 23:14:10
合計ジャッジ時間 4,191 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,940 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 2 ms
6,944 KB
testcase_16 AC 1 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int slove(int, long long int)':
main.cpp:25:1: warning: control reaches end of non-void function [-Wreturn-type]
   25 | }
      | ^

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;
vector<long long> len(26,1);
long long N,K;

int slove(int lv,long long count){
    for(int j = 0;j < 7;j++){
        if(j == 0 || j == 3 || j == 6 || lv == 1){
            count++;
        }
        else{
            if(count + len[lv-1] < K){
                count += len[lv - 1];
            }
            else{
                return slove(lv-1,count);
            }
        }

        if(count == K){
            return j;
        }
    }
}

int main(){
    
    long long nowlen = 8;
    for(int j = 1;j <= 25;j++){
        len[j] = nowlen - 1;
        nowlen *= 4;
    }
    
    cin >> N >> K;
    if(N > 25){
        if(N >= K){
            cout << "y" << endl;
            return 0;
        }
        K -= N - 25;
        N = 25;
    }

    int ans = slove(N,0);
    cout << string("yuusaan").substr(ans,1) << endl;
    return 0;
}
0