結果

問題 No.2600 Avator Height
ユーザー tentententen
提出日時 2024-01-15 10:28:38
言語 Java21
(openjdk 21)
結果
AC  
実行時間 358 ms / 2,000 ms
コード長 2,109 bytes
コンパイル時間 2,370 ms
コンパイル使用メモリ 88,760 KB
実行使用メモリ 54,184 KB
最終ジャッジ日時 2024-09-28 02:13:40
合計ジャッジ時間 13,002 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
39,928 KB
testcase_01 AC 319 ms
51,564 KB
testcase_02 AC 314 ms
51,560 KB
testcase_03 AC 335 ms
51,404 KB
testcase_04 AC 334 ms
51,732 KB
testcase_05 AC 313 ms
51,628 KB
testcase_06 AC 355 ms
51,576 KB
testcase_07 AC 300 ms
51,696 KB
testcase_08 AC 301 ms
51,596 KB
testcase_09 AC 298 ms
49,468 KB
testcase_10 AC 347 ms
51,732 KB
testcase_11 AC 297 ms
51,424 KB
testcase_12 AC 358 ms
49,204 KB
testcase_13 AC 318 ms
51,756 KB
testcase_14 AC 296 ms
51,640 KB
testcase_15 AC 316 ms
51,664 KB
testcase_16 AC 351 ms
54,184 KB
testcase_17 AC 303 ms
51,420 KB
testcase_18 AC 309 ms
51,824 KB
testcase_19 AC 321 ms
51,564 KB
testcase_20 AC 313 ms
52,036 KB
testcase_21 AC 303 ms
51,216 KB
testcase_22 AC 305 ms
51,700 KB
testcase_23 AC 324 ms
51,816 KB
testcase_24 AC 227 ms
47,788 KB
testcase_25 AC 313 ms
51,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    static final int MOD = 998244353;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int q = sc.nextInt();
        long r1 = 1;
        long r2 = 1;
        long e1 = 1;
        long e2 = 3;
        long[] ans = new long[200001];
        ans[1] = 4;
        ans[2] = MOD - 4;
        for (int i = 3; i < ans.length; i++) {
            long r = (r1 + r2) % MOD;
            long e = (e1 + e2) % MOD;
            ans[i] = (5 * r % MOD * r % MOD - (e * e % MOD) + MOD) % MOD;
            r1 = r2;
            r2 = r;
            e1 = e2;
            e2 = e;
        }
        StringBuilder sb = new StringBuilder();
        while (q-- > 0) {
            sb.append(ans[sc.nextInt()]).append("\n");
        }
        System.out.print(sb);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0