結果

問題 No.742 にゃんにゃんにゃん 猫の挨拶
ユーザー x87asdfx87asdf
提出日時 2018-11-05 16:29:55
言語 Java
(openjdk 23)
結果
AC  
実行時間 1,035 ms / 2,500 ms
コード長 607 bytes
コンパイル時間 1,850 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 59,236 KB
最終ジャッジ日時 2024-11-20 20:12:16
合計ジャッジ時間 6,100 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
52,940 KB
testcase_01 AC 112 ms
53,884 KB
testcase_02 AC 121 ms
54,128 KB
testcase_03 AC 119 ms
53,880 KB
testcase_04 AC 119 ms
54,072 KB
testcase_05 AC 131 ms
53,824 KB
testcase_06 AC 158 ms
54,100 KB
testcase_07 AC 169 ms
54,568 KB
testcase_08 AC 216 ms
57,036 KB
testcase_09 AC 114 ms
53,744 KB
testcase_10 AC 112 ms
53,844 KB
testcase_11 AC 1,035 ms
59,236 KB
testcase_12 AC 747 ms
58,656 KB
testcase_13 AC 102 ms
53,000 KB
testcase_14 AC 109 ms
53,436 KB
testcase_15 AC 111 ms
52,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        int[] destination = new int[sc.nextInt()];
        for(int i1=0;i1<destination.length;i1++) {
            destination[i1] = sc.nextInt();
        }
        
        int count = 0;
        for(int i1=0;i1<destination.length;i1++) {
            for(int i2=1;i2<=i1;i2++) {
                if(destination[i1] <= destination[i1-i2]) {
                    count++;
                }
            }
        }
        
        System.out.println(count);
    }
}
0