結果

問題 No.742 にゃんにゃんにゃん 猫の挨拶
ユーザー 👑 KazunKazun
提出日時 2021-02-10 01:48:21
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 198 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 73,132 KB
最終ジャッジ日時 2024-07-07 06:49:24
合計ジャッジ時間 5,016 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,000 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 36 ms
51,328 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 42 ms
58,368 KB
testcase_05 AC 43 ms
59,648 KB
testcase_06 AC 44 ms
59,648 KB
testcase_07 AC 48 ms
60,672 KB
testcase_08 AC 63 ms
61,824 KB
testcase_09 AC 37 ms
52,096 KB
testcase_10 AC 36 ms
51,584 KB
testcase_11 TLE -
testcase_12 AC 1,680 ms
72,520 KB
testcase_13 AC 41 ms
52,536 KB
testcase_14 AC 37 ms
53,760 KB
testcase_15 AC 38 ms
54,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
N=int(input())
M=[0]*N
for i in range(N):
    M[i]=int(input())

X=0
for i in range(N):
    for j in range(i+1,N):
        if M[i]>M[j]:
            X+=1
print(X)
0