結果

問題 No.742 にゃんにゃんにゃん 猫の挨拶
ユーザー pluto77pluto77
提出日時 2018-10-06 12:02:13
言語 PyPy2
(7.3.15)
結果
TLE  
実行時間 -
コード長 170 bytes
コンパイル時間 2,418 ms
コンパイル使用メモリ 76,308 KB
実行使用メモリ 85,952 KB
最終ジャッジ日時 2024-10-12 14:03:58
合計ジャッジ時間 7,469 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
75,776 KB
testcase_01 AC 73 ms
75,388 KB
testcase_02 AC 74 ms
75,520 KB
testcase_03 AC 75 ms
75,264 KB
testcase_04 AC 81 ms
76,544 KB
testcase_05 AC 81 ms
76,836 KB
testcase_06 AC 83 ms
77,828 KB
testcase_07 AC 94 ms
78,268 KB
testcase_08 AC 108 ms
78,592 KB
testcase_09 AC 72 ms
75,264 KB
testcase_10 AC 74 ms
75,772 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki742

n=int(raw_input())
m=[]
for i in xrange(n):
 m.append(int(raw_input()))
res=0
for i in xrange(n):
 for j in xrange(i+1,n):
  if m[i]>=m[j]:
   res+=1
print res
0