結果

問題 No.2055 12x34...
ユーザー tentententen
提出日時 2023-07-25 08:51:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 508 ms / 2,000 ms
コード長 1,829 bytes
コンパイル時間 2,752 ms
コンパイル使用メモリ 89,336 KB
実行使用メモリ 75,124 KB
最終ジャッジ日時 2024-10-02 03:27:18
合計ジャッジ時間 17,717 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,368 KB
testcase_01 AC 54 ms
50,364 KB
testcase_02 AC 165 ms
55,172 KB
testcase_03 AC 230 ms
55,988 KB
testcase_04 AC 248 ms
56,236 KB
testcase_05 AC 260 ms
56,252 KB
testcase_06 AC 255 ms
56,224 KB
testcase_07 AC 231 ms
56,448 KB
testcase_08 AC 223 ms
56,232 KB
testcase_09 AC 260 ms
56,228 KB
testcase_10 AC 264 ms
55,768 KB
testcase_11 AC 201 ms
55,976 KB
testcase_12 AC 373 ms
62,856 KB
testcase_13 AC 508 ms
67,912 KB
testcase_14 AC 293 ms
58,520 KB
testcase_15 AC 307 ms
58,964 KB
testcase_16 AC 483 ms
67,596 KB
testcase_17 AC 285 ms
58,588 KB
testcase_18 AC 343 ms
62,760 KB
testcase_19 AC 200 ms
56,156 KB
testcase_20 AC 157 ms
55,384 KB
testcase_21 AC 197 ms
56,004 KB
testcase_22 AC 394 ms
65,416 KB
testcase_23 AC 389 ms
69,124 KB
testcase_24 AC 431 ms
73,868 KB
testcase_25 AC 386 ms
72,060 KB
testcase_26 AC 385 ms
72,200 KB
testcase_27 AC 417 ms
73,904 KB
testcase_28 AC 404 ms
71,964 KB
testcase_29 AC 396 ms
75,124 KB
testcase_30 AC 390 ms
71,808 KB
testcase_31 AC 398 ms
69,976 KB
testcase_32 AC 386 ms
71,852 KB
testcase_33 AC 319 ms
56,064 KB
testcase_34 AC 320 ms
56,184 KB
testcase_35 AC 320 ms
56,216 KB
testcase_36 AC 316 ms
56,104 KB
testcase_37 AC 319 ms
56,072 KB
testcase_38 AC 314 ms
56,124 KB
testcase_39 AC 324 ms
56,108 KB
testcase_40 AC 320 ms
56,020 KB
testcase_41 AC 317 ms
56,148 KB
testcase_42 AC 320 ms
56,200 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 n = sc.nextInt();
        HashMap<Integer, Long> prev = new HashMap<>();
        long ans = 0;
        while (n-- > 0) {
            int x = sc.nextInt();
            ans += prev.getOrDefault(x - 1, 0L);
            ans %= MOD;
            prev.put(x, (prev.getOrDefault(x, 0L) + prev.getOrDefault(x - 1, 0L) + 1) % MOD);
        }
        System.out.println(ans);
    }
}
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