結果

問題 No.234 めぐるはめぐる (4)
ユーザー t98slidert98slider
提出日時 2023-01-27 15:17:51
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 430 bytes
コンパイル時間 1,669 ms
コンパイル使用メモリ 166,600 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-09-10 10:17:30
合計ジャッジ時間 2,136 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    vector<string> OEIS_A266513 = {
    "1", 
    "11", 
    "110", 
    "2402", 
    "128967", 
    "16767653", 
    "5436906668", 
    "4406952731948", 
    "8819634719356421", 
    "43329348004927734247", 
    "522235268182347360718818", 
    "15436131339319739257518081878"};
    int N;
    cin >>  N;
    cout << OEIS_A266513[N - 1] << '\n';	
}
0