結果
問題 |
No.742 にゃんにゃんにゃん 猫の挨拶
|
ユーザー |
|
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 11 TLE * 1 -- * 4 |
ソースコード
#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