結果
問題 | No.657 テトラナッチ数列 Easy |
ユーザー | 夜 |
提出日時 | 2021-02-11 18:36:59 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 21 ms / 2,000 ms |
コード長 | 893 bytes |
コンパイル時間 | 878 ms |
コンパイル使用メモリ | 101,992 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-18 06:51:13 |
合計ジャッジ時間 | 1,813 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
5,248 KB |
testcase_01 | AC | 4 ms
5,376 KB |
testcase_02 | AC | 4 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 4 ms
5,376 KB |
testcase_05 | AC | 18 ms
5,376 KB |
testcase_06 | AC | 4 ms
5,376 KB |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 19 ms
5,376 KB |
testcase_10 | AC | 21 ms
5,376 KB |
testcase_11 | AC | 20 ms
5,376 KB |
testcase_12 | AC | 21 ms
5,376 KB |
testcase_13 | AC | 21 ms
5,376 KB |
testcase_14 | AC | 21 ms
5,376 KB |
testcase_15 | AC | 21 ms
5,376 KB |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <vector> #include <iomanip> #include <cmath> #include <stdio.h> #include <queue> #include <deque> #include <cstdio> #include <set> #include <map> #include <bitset> #include <stack> #include <cctype> using namespace std; set<tuple<int, int, int, int>>st; int t[5000]; int main() { t[0] = 0, t[1] = 0, t[2] = 0, t[3] = 1; int a = 0, b = 0, c = 0, d = 1; for (int i = 4; i < 100000; i++) { if (st.find(make_tuple(a, b, c, d)) != st.end()) { break; } st.insert(make_tuple(a, b, c, d)); int a1 = b, b1 = c, c1 = d, d1 = a + b + c + d; d1 %= 17; t[i] = d1; a = a1, b = b1, c = c1, d = d1; } int q; cin >> q; for (int i = 0; i < q; i++) { long long n; cin >> n; n--; cout << t[n % 4912] << endl; } }