結果
問題 | No.2053 12345... |
ユーザー | tenten |
提出日時 | 2022-09-27 08:39:59 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 250 ms / 2,000 ms |
コード長 | 1,377 bytes |
コンパイル時間 | 1,912 ms |
コンパイル使用メモリ | 77,464 KB |
実行使用メモリ | 61,032 KB |
最終ジャッジ日時 | 2024-06-02 00:51:19 |
合計ジャッジ時間 | 9,635 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
49,836 KB |
testcase_01 | AC | 47 ms
50,448 KB |
testcase_02 | AC | 75 ms
51,864 KB |
testcase_03 | AC | 166 ms
56,076 KB |
testcase_04 | AC | 222 ms
57,680 KB |
testcase_05 | AC | 135 ms
54,444 KB |
testcase_06 | AC | 216 ms
57,616 KB |
testcase_07 | AC | 184 ms
54,708 KB |
testcase_08 | AC | 171 ms
54,956 KB |
testcase_09 | AC | 213 ms
57,540 KB |
testcase_10 | AC | 249 ms
61,032 KB |
testcase_11 | AC | 138 ms
55,312 KB |
testcase_12 | AC | 119 ms
52,564 KB |
testcase_13 | AC | 243 ms
58,788 KB |
testcase_14 | AC | 181 ms
55,700 KB |
testcase_15 | AC | 144 ms
54,828 KB |
testcase_16 | AC | 177 ms
56,032 KB |
testcase_17 | AC | 148 ms
55,124 KB |
testcase_18 | AC | 250 ms
60,480 KB |
testcase_19 | AC | 236 ms
57,516 KB |
testcase_20 | AC | 112 ms
53,412 KB |
testcase_21 | AC | 184 ms
54,868 KB |
testcase_22 | AC | 61 ms
50,608 KB |
testcase_23 | AC | 125 ms
52,528 KB |
testcase_24 | AC | 173 ms
54,452 KB |
testcase_25 | AC | 235 ms
60,204 KB |
testcase_26 | AC | 179 ms
54,900 KB |
testcase_27 | AC | 186 ms
55,516 KB |
testcase_28 | AC | 165 ms
55,124 KB |
testcase_29 | AC | 227 ms
57,396 KB |
testcase_30 | AC | 178 ms
55,940 KB |
testcase_31 | AC | 227 ms
58,072 KB |
testcase_32 | AC | 247 ms
60,612 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); long ans = 0; int start = -1; int prev = -1; for (int i = 0; i < n; i++) { int x = sc.nextInt(); if (x != prev + 1) { long count = i - start; ans += count * (count - 1) / 2; start = i; } prev = x; } long count = n - start; ans += count * (count - 1) / 2; System.out.println(ans); } } 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 String next() throws Exception { while (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }