結果
問題 | No.2600 Avator Height |
ユーザー | TairitsuMeow |
提出日時 | 2024-01-12 21:23:43 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 25 ms / 2,000 ms |
コード長 | 1,048 bytes |
コンパイル時間 | 1,357 ms |
コンパイル使用メモリ | 168,752 KB |
実行使用メモリ | 11,128 KB |
最終ジャッジ日時 | 2024-09-27 21:03:02 |
合計ジャッジ時間 | 4,309 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
10,084 KB |
testcase_01 | AC | 24 ms
9,268 KB |
testcase_02 | AC | 24 ms
9,176 KB |
testcase_03 | AC | 22 ms
8,596 KB |
testcase_04 | AC | 22 ms
9,884 KB |
testcase_05 | AC | 25 ms
9,976 KB |
testcase_06 | AC | 22 ms
10,008 KB |
testcase_07 | AC | 24 ms
8,692 KB |
testcase_08 | AC | 24 ms
9,440 KB |
testcase_09 | AC | 22 ms
8,984 KB |
testcase_10 | AC | 22 ms
10,080 KB |
testcase_11 | AC | 23 ms
9,244 KB |
testcase_12 | AC | 24 ms
9,424 KB |
testcase_13 | AC | 22 ms
9,040 KB |
testcase_14 | AC | 23 ms
9,396 KB |
testcase_15 | AC | 22 ms
8,536 KB |
testcase_16 | AC | 23 ms
9,188 KB |
testcase_17 | AC | 23 ms
9,444 KB |
testcase_18 | AC | 23 ms
9,232 KB |
testcase_19 | AC | 23 ms
8,988 KB |
testcase_20 | AC | 23 ms
10,560 KB |
testcase_21 | AC | 23 ms
8,908 KB |
testcase_22 | AC | 23 ms
8,832 KB |
testcase_23 | AC | 23 ms
9,448 KB |
testcase_24 | AC | 8 ms
10,028 KB |
testcase_25 | AC | 21 ms
11,128 KB |
ソースコード
// Problem: No.2600 Avator Height // Contest: yukicoder // URL: https://yukicoder.me/problems/no/2600 // Memory Limit: 512 MB // Time Limit: 2000 ms #include<bits/stdc++.h> #define debug(x) cerr<<(#x)<<" "<<(x)<<endl typedef long long ll; typedef long double ld; typedef unsigned long long ull; #define pii pair<ll,ll> #define rep(i,a,b) for(ll i=(a);i<=(b);++i) #define per(i,a,b) for(ll i=(a);i>=(b);--i) using namespace std; bool Mbe; ll read(){ ll x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f; } void write(ll x){ if(x<0)putchar('-'),x=-x; if(x>9)write(x/10); putchar(x%10+'0'); } const ll N=2e6+9,Mod=998244353; ll T,n,a[N],b[N]; bool Med; int main(){ cerr<<fabs(&Med-&Mbe)/1048576.0<<"MB\n"; T=read(); a[1]=a[2]=b[1]=1,b[2]=3; rep(i,3,(ll)2e5){ a[i]=(a[i-1]+a[i-2])%Mod; b[i]=(b[i-1]+b[i-2])%Mod; } while(T--){ ll n=read(); ll res=a[n]*a[n]%Mod*5%Mod-b[n]*b[n]%Mod; write((res+Mod)%Mod),putchar('\n'); } return 0; }