結果
問題 | No.658 テトラナッチ数列 Hard |
ユーザー | %20 |
提出日時 | 2018-03-02 23:53:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 125 ms / 2,000 ms |
コード長 | 740 bytes |
コンパイル時間 | 2,046 ms |
コンパイル使用メモリ | 201,084 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-22 23:04:37 |
合計ジャッジ時間 | 3,227 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 96 ms
5,376 KB |
testcase_05 | AC | 100 ms
5,376 KB |
testcase_06 | AC | 109 ms
5,376 KB |
testcase_07 | AC | 107 ms
5,376 KB |
testcase_08 | AC | 110 ms
5,376 KB |
testcase_09 | AC | 124 ms
5,376 KB |
testcase_10 | AC | 125 ms
5,376 KB |
コンパイルメッセージ
main.cpp:27:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type] 27 | main(){ | ^~~~
ソースコード
#include<bits/stdc++.h> using namespace std; int Z[4][4]; void f(int a[4][4]){ int r[4][4]; for(int y=0;y<4;++y){ for(int x=0;x<4;++x){ r[y][x]=0; } } for(int y=0;y<4;++y){ for(int x=0;x<4;++x){ for(int i=0;i<4;++i){ (r[y][x]+=Z[y][i]*a[i][x])%=17; } } } for(int y=0;y<4;++y){ for(int x=0;x<4;++x){ Z[y][x]=r[y][x]; } } } main(){ int Q; scanf("%d",&Q); for(int i=0;i<Q;++i){ long long n; scanf("%lld",&n); --n; for(int y=0;y<4;++y){ for(int x=0;x<4;++x){ Z[y][x]=x==y; } } for(int i=60;i--;){ f(Z); if(n>>i&1){ int a[4][4]; for(int y=0;y<4;++y){ for(int x=0;x<4;++x){ a[y][x]=y==0|y-1==x; } } f(a); } } printf("%d\n",Z[3][0]); } }