結果
問題 | No.1754 T-block Tiling |
ユーザー | merlin |
提出日時 | 2021-11-20 14:03:41 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 59 ms / 2,000 ms |
コード長 | 766 bytes |
コンパイル時間 | 1,823 ms |
コンパイル使用メモリ | 75,556 KB |
実行使用メモリ | 37,740 KB |
最終ジャッジ日時 | 2024-06-11 14:56:23 |
合計ジャッジ時間 | 2,340 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
37,200 KB |
testcase_01 | AC | 59 ms
37,740 KB |
ソースコード
//https://oeis.org/A025192 import java.io.*; import java.util.*; class Main { public static void main(String args[])throws Exception { BufferedReader bu=new BufferedReader(new InputStreamReader(System.in)); StringBuilder sb=new StringBuilder(); int t=Integer.parseInt(bu.readLine()); while(t-->0) { int n=Integer.parseInt(bu.readLine()); long M=998244353,ans=power(3,n-1,M); ans=ans*2%M; sb.append(ans+"\n"); } System.out.print(sb); } static long power(long a,long b,long M) { long res=1; while(b!=0) { if(b%2==1) res=res*a%M; b>>=1; a=a*a%M; } return res; } }