結果
問題 | No.2079 aaabbc |
ユーザー | tenten |
提出日時 | 2022-09-26 11:25:49 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 49 ms / 2,000 ms |
コード長 | 1,235 bytes |
コンパイル時間 | 2,157 ms |
コンパイル使用メモリ | 77,340 KB |
実行使用メモリ | 50,576 KB |
最終ジャッジ日時 | 2024-06-02 00:01:56 |
合計ジャッジ時間 | 3,630 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
50,424 KB |
testcase_01 | AC | 46 ms
50,412 KB |
testcase_02 | AC | 46 ms
50,496 KB |
testcase_03 | AC | 47 ms
50,384 KB |
testcase_04 | AC | 48 ms
50,500 KB |
testcase_05 | AC | 47 ms
50,096 KB |
testcase_06 | AC | 47 ms
50,108 KB |
testcase_07 | AC | 46 ms
50,204 KB |
testcase_08 | AC | 47 ms
50,292 KB |
testcase_09 | AC | 47 ms
50,328 KB |
testcase_10 | AC | 49 ms
50,424 KB |
testcase_11 | AC | 49 ms
50,288 KB |
testcase_12 | AC | 49 ms
50,272 KB |
testcase_13 | AC | 48 ms
50,576 KB |
testcase_14 | AC | 46 ms
50,072 KB |
testcase_15 | AC | 47 ms
50,376 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { static final int MOD = 998244353; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); System.out.println(pow(3, sc.nextInt())); } static long pow(long x, int p) { if (p == 0) { return 1; } else if (p % 2 == 0) { return pow(x * x % MOD, p / 2); } else { return pow(x, p - 1) * x % MOD; } } } class Scanner { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); StringTokenizer st = new StringTokenizer(""); StringBuilder sb = new StringBuilder(); public Scanner() throws Exception { } public int nextInt() throws Exception { return Integer.parseInt(next()); } public long nextLong() throws Exception { return Long.parseLong(next()); } public double nextDouble() throws Exception { return Double.parseDouble(next()); } public String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }