結果

問題 No.2055 12x34...
ユーザー tentententen
提出日時 2022-08-22 13:06:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 471 ms / 2,000 ms
コード長 1,420 bytes
コンパイル時間 2,371 ms
コンパイル使用メモリ 78,760 KB
実行使用メモリ 73,084 KB
最終ジャッジ日時 2024-10-10 06:35:14
合計ジャッジ時間 17,185 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
50,080 KB
testcase_01 AC 57 ms
50,296 KB
testcase_02 AC 165 ms
54,856 KB
testcase_03 AC 213 ms
56,212 KB
testcase_04 AC 247 ms
56,264 KB
testcase_05 AC 254 ms
56,404 KB
testcase_06 AC 252 ms
56,340 KB
testcase_07 AC 234 ms
56,172 KB
testcase_08 AC 218 ms
56,440 KB
testcase_09 AC 268 ms
56,360 KB
testcase_10 AC 274 ms
56,092 KB
testcase_11 AC 202 ms
56,436 KB
testcase_12 AC 359 ms
63,176 KB
testcase_13 AC 461 ms
66,216 KB
testcase_14 AC 278 ms
58,664 KB
testcase_15 AC 267 ms
58,492 KB
testcase_16 AC 471 ms
66,308 KB
testcase_17 AC 293 ms
58,856 KB
testcase_18 AC 348 ms
61,092 KB
testcase_19 AC 197 ms
55,924 KB
testcase_20 AC 144 ms
54,544 KB
testcase_21 AC 209 ms
56,028 KB
testcase_22 AC 400 ms
64,552 KB
testcase_23 AC 391 ms
65,992 KB
testcase_24 AC 404 ms
72,976 KB
testcase_25 AC 410 ms
69,592 KB
testcase_26 AC 397 ms
68,284 KB
testcase_27 AC 390 ms
73,084 KB
testcase_28 AC 398 ms
70,812 KB
testcase_29 AC 382 ms
72,320 KB
testcase_30 AC 396 ms
70,244 KB
testcase_31 AC 400 ms
70,360 KB
testcase_32 AC 408 ms
71,068 KB
testcase_33 AC 327 ms
56,188 KB
testcase_34 AC 310 ms
56,240 KB
testcase_35 AC 324 ms
56,216 KB
testcase_36 AC 327 ms
56,228 KB
testcase_37 AC 315 ms
56,308 KB
testcase_38 AC 326 ms
56,076 KB
testcase_39 AC 319 ms
56,060 KB
testcase_40 AC 321 ms
56,132 KB
testcase_41 AC 325 ms
56,212 KB
testcase_42 AC 317 ms
56,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
        int n = sc.nextInt();
        HashMap<Integer, Integer> counts = new HashMap<>();
        int ans = 0;
        for (int i = 0; i < n; i++) {
            int x = sc.nextInt();
            if (counts.containsKey(x - 1)) {
                ans += counts.get(x - 1);
                ans %= MOD;
                counts.put(x, (counts.getOrDefault(x, 0) + counts.get(x - 1) + 1) % MOD);
            } else {
                counts.put(x, counts.getOrDefault(x, 0) + 1);
            }
        }
        System.out.println(ans);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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();
    }
}
0