結果
| 問題 |
No.657 テトラナッチ数列 Easy
|
| コンテスト | |
| ユーザー |
かぼちゃ
|
| 提出日時 | 2018-03-02 22:57:25 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 26 ms / 2,000 ms |
| コード長 | 415 bytes |
| コンパイル時間 | 590 ms |
| コンパイル使用メモリ | 67,032 KB |
| 実行使用メモリ | 8,916 KB |
| 最終ジャッジ日時 | 2024-06-22 05:16:29 |
| 合計ジャッジ時間 | 1,375 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 13 |
ソースコード
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
#include <math.h>
using namespace std;
int main() {
int q;
vector<int> t = {0,0,0,1};
int n;
cin >> q;
for(int i = 0;i < q;i++){
cin >> n;
for(int j = t.size();j <= n;j++){
t.push_back((t[j-1]+t[j-2]+t[j-3]+t[j-4])%17);
}
cout << t[n-1] % 17 << endl;
}
return 0;
}
かぼちゃ