結果
問題 | No.2036 Max Middle |
ユーザー | tenten |
提出日時 | 2023-07-25 08:43:33 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 286 ms / 2,000 ms |
コード長 | 1,777 bytes |
コンパイル時間 | 2,938 ms |
コンパイル使用メモリ | 88,668 KB |
実行使用メモリ | 52,604 KB |
最終ジャッジ日時 | 2024-10-02 03:18:55 |
合計ジャッジ時間 | 7,895 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 52 ms
37,148 KB |
testcase_01 | AC | 52 ms
37,140 KB |
testcase_02 | AC | 52 ms
36,920 KB |
testcase_03 | AC | 52 ms
37,144 KB |
testcase_04 | AC | 52 ms
37,044 KB |
testcase_05 | AC | 51 ms
37,048 KB |
testcase_06 | AC | 52 ms
37,396 KB |
testcase_07 | AC | 51 ms
37,012 KB |
testcase_08 | AC | 244 ms
46,496 KB |
testcase_09 | AC | 281 ms
50,368 KB |
testcase_10 | AC | 282 ms
49,616 KB |
testcase_11 | AC | 260 ms
47,604 KB |
testcase_12 | AC | 275 ms
46,712 KB |
testcase_13 | AC | 280 ms
50,376 KB |
testcase_14 | AC | 86 ms
38,588 KB |
testcase_15 | AC | 80 ms
38,036 KB |
testcase_16 | AC | 286 ms
52,604 KB |
testcase_17 | AC | 191 ms
44,756 KB |
testcase_18 | AC | 260 ms
46,512 KB |
testcase_19 | AC | 265 ms
46,628 KB |
testcase_20 | AC | 276 ms
47,412 KB |
ソースコード
import java.io.*; import java.util.*; import java.util.stream.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); int up = 0; long ans = 0; int current = sc.nextInt(); for (int i = 1; i < n; i++) { int x = sc.nextInt(); if (current < x) { up++; } else { ans += up; } current = x; } 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(); } }