結果

問題 No.2055 12x34...
ユーザー tentententen
提出日時 2023-01-19 18:36:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 375 ms / 2,000 ms
コード長 1,998 bytes
コンパイル時間 2,917 ms
コンパイル使用メモリ 86,444 KB
実行使用メモリ 74,928 KB
最終ジャッジ日時 2024-06-22 07:15:11
合計ジャッジ時間 16,047 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
50,368 KB
testcase_01 AC 51 ms
50,196 KB
testcase_02 AC 148 ms
55,232 KB
testcase_03 AC 199 ms
56,164 KB
testcase_04 AC 229 ms
56,312 KB
testcase_05 AC 227 ms
56,376 KB
testcase_06 AC 225 ms
56,248 KB
testcase_07 AC 216 ms
56,536 KB
testcase_08 AC 184 ms
56,188 KB
testcase_09 AC 228 ms
56,308 KB
testcase_10 AC 232 ms
56,476 KB
testcase_11 AC 163 ms
56,700 KB
testcase_12 AC 293 ms
62,976 KB
testcase_13 AC 347 ms
66,532 KB
testcase_14 AC 207 ms
58,464 KB
testcase_15 AC 236 ms
58,448 KB
testcase_16 AC 371 ms
66,716 KB
testcase_17 AC 265 ms
59,040 KB
testcase_18 AC 324 ms
61,176 KB
testcase_19 AC 182 ms
55,912 KB
testcase_20 AC 138 ms
54,120 KB
testcase_21 AC 198 ms
56,208 KB
testcase_22 AC 364 ms
66,380 KB
testcase_23 AC 358 ms
70,068 KB
testcase_24 AC 375 ms
72,944 KB
testcase_25 AC 363 ms
69,760 KB
testcase_26 AC 363 ms
70,280 KB
testcase_27 AC 365 ms
74,928 KB
testcase_28 AC 349 ms
72,748 KB
testcase_29 AC 346 ms
73,280 KB
testcase_30 AC 350 ms
69,768 KB
testcase_31 AC 354 ms
70,604 KB
testcase_32 AC 371 ms
72,732 KB
testcase_33 AC 289 ms
56,248 KB
testcase_34 AC 285 ms
56,364 KB
testcase_35 AC 302 ms
56,324 KB
testcase_36 AC 287 ms
56,372 KB
testcase_37 AC 307 ms
56,164 KB
testcase_38 AC 303 ms
56,344 KB
testcase_39 AC 294 ms
56,312 KB
testcase_40 AC 266 ms
56,044 KB
testcase_41 AC 303 ms
56,376 KB
testcase_42 AC 279 ms
56,224 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> lengths = new HashMap<>();
        long ans = 0;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            if (lengths.containsKey(x - 1)) {
                lengths.put(x, (lengths.getOrDefault(x, 0L) + lengths.get(x - 1) + 1) % MOD);
                ans += lengths.get(x - 1);
                ans %= MOD;
            } else {
                lengths.put(x, lengths.getOrDefault(x, 0L) + 1);
            }
        }
        
        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