結果

問題 No.742 にゃんにゃんにゃん 猫の挨拶
ユーザー x87asdfx87asdf
提出日時 2018-11-04 18:33:08
言語 Java
(openjdk 23)
結果
AC  
実行時間 953 ms / 2,500 ms
コード長 601 bytes
コンパイル時間 2,099 ms
コンパイル使用メモリ 74,228 KB
実行使用メモリ 59,292 KB
最終ジャッジ日時 2024-11-20 20:01:34
合計ジャッジ時間 6,015 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
54,008 KB
testcase_01 AC 110 ms
53,004 KB
testcase_02 AC 127 ms
54,240 KB
testcase_03 AC 105 ms
53,252 KB
testcase_04 AC 128 ms
54,100 KB
testcase_05 AC 131 ms
54,228 KB
testcase_06 AC 161 ms
54,788 KB
testcase_07 AC 190 ms
54,884 KB
testcase_08 AC 208 ms
57,120 KB
testcase_09 AC 116 ms
54,056 KB
testcase_10 AC 118 ms
54,244 KB
testcase_11 AC 953 ms
59,292 KB
testcase_12 AC 738 ms
58,884 KB
testcase_13 AC 113 ms
54,032 KB
testcase_14 AC 122 ms
54,004 KB
testcase_15 AC 120 ms
54,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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