結果

問題 No.2053 12345...
ユーザー tentententen
提出日時 2024-07-30 11:10:47
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 1,415 bytes
コンパイル時間 2,664 ms
コンパイル使用メモリ 84,368 KB
実行使用メモリ 81,044 KB
最終ジャッジ日時 2024-07-30 11:11:03
合計ジャッジ時間 14,025 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
51,392 KB
testcase_01 AC 67 ms
51,308 KB
testcase_02 AC 123 ms
52,704 KB
testcase_03 AC 234 ms
58,648 KB
testcase_04 AC 374 ms
70,752 KB
testcase_05 AC 209 ms
56,476 KB
testcase_06 AC 375 ms
65,268 KB
testcase_07 AC 301 ms
63,180 KB
testcase_08 AC 278 ms
63,416 KB
testcase_09 AC 365 ms
70,096 KB
testcase_10 AC 466 ms
72,808 KB
testcase_11 AC 205 ms
56,688 KB
testcase_12 AC 170 ms
54,688 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 259 ms
59,036 KB
testcase_17 AC 240 ms
56,776 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 91 ms
51,932 KB
testcase_23 AC 190 ms
56,972 KB
testcase_24 AC 260 ms
59,108 KB
testcase_25 AC 414 ms
70,984 KB
testcase_26 AC 319 ms
63,180 KB
testcase_27 AC 249 ms
58,924 KB
testcase_28 AC 218 ms
58,988 KB
testcase_29 AC 349 ms
65,488 KB
testcase_30 AC 255 ms
58,876 KB
testcase_31 AC 364 ms
64,756 KB
testcase_32 AC 460 ms
81,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        Map<Integer, Long> lengths = new HashMap<>();
        while (n-- > 0) {
            int x = sc.nextInt();
            lengths.put(x, lengths.getOrDefault(x, 0L) + lengths.getOrDefault(x - 1, -1L) + 1);
        }
        System.out.println(lengths.values().stream().mapToLong(Long::longValue).sum());
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0