結果

問題 No.657 テトラナッチ数列 Easy
ユーザー YugimnYugimn
提出日時 2022-05-15 23:30:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 636 bytes
コンパイル時間 2,342 ms
コンパイル使用メモリ 189,884 KB
実行使用メモリ 11,108 KB
最終ジャッジ日時 2024-09-13 11:45:20
合計ジャッジ時間 3,445 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 20 ms
11,016 KB
testcase_01 AC 20 ms
11,092 KB
testcase_02 AC 19 ms
11,004 KB
testcase_03 AC 20 ms
11,020 KB
testcase_04 AC 19 ms
11,020 KB
testcase_05 AC 34 ms
11,084 KB
testcase_06 AC 20 ms
11,088 KB
testcase_07 AC 19 ms
11,008 KB
testcase_08 AC 20 ms
11,088 KB
testcase_09 AC 34 ms
11,064 KB
testcase_10 AC 35 ms
10,984 KB
testcase_11 AC 36 ms
11,108 KB
testcase_12 AC 36 ms
11,024 KB
testcase_13 AC 36 ms
11,088 KB
testcase_14 AC 37 ms
11,096 KB
testcase_15 AC 37 ms
11,076 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:9:12: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts'
    9 | void print(auto a){
      |            ^~~~
main.cpp:13:13: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts'
   13 | void prints(auto a){
      |             ^~~~
main.cpp:21:13: warning: use of 'auto' in parameter declaration only available with '-std=c++20' or '-fconcepts'
   21 | void printl(auto a){
      |             ^~~~

ソースコード

diff #

//Normal

#define _GLIBCXX_DEBUG
#define ll long long
#include <bits/stdc++.h>
using namespace std;
using Graph = vector<vector<int>>;

void print(auto a){
  cout << a;
}

void prints(auto a){
  cout << a << " ";
}

void prints(){
  cout << " ";
}

void printl(auto a){
  cout << a << endl;
}

void printl(){
  cout << endl;
}

void fix(int n){
  cout << fixed << setprecision(n);
}

int main(){
  vector<int> X(2e6, 0);
  X[4] = 1;

  for(int i = 5; i <= 1e6; i++){
    X[i] = X[i-4]+X[i-3]+X[i-2]+X[i-1];

    X[i] %= 17;
  }

  int Q; cin >> Q;
  for(int i = 0; i < Q; i++){
    int M; cin >> M;

    printl(X[M]);
  }

  return 0;
}
0