結果
問題 | No.742 にゃんにゃんにゃん 猫の挨拶 |
ユーザー | tkr182 |
提出日時 | 2018-10-06 01:17:56 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,310 bytes |
コンパイル時間 | 98 ms |
コンパイル使用メモリ | 13,184 KB |
実行使用メモリ | 20,640 KB |
最終ジャッジ日時 | 2024-10-12 14:01:56 |
合計ジャッジ時間 | 8,002 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 29 ms
17,824 KB |
testcase_01 | WA | - |
testcase_02 | AC | 29 ms
11,008 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2,434 ms
11,264 KB |
testcase_09 | WA | - |
testcase_10 | AC | 30 ms
11,008 KB |
testcase_11 | TLE | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
n=int(input()) t=[int(input()) for i in range(n)] s=[(i,t.index(i)+1) for i in range(1,n+1)] c=0 d=0 for i in range(0,n): for t in range(0,n): if s[i][0]==s[t][1] and s[i][1]==s[t][0]: d+=1 for i in range(0,n): if s[i][0]<=s[i][1]: for p in range(0,i): if s[p][0]<=s[p][1]: if s[i][0]<=s[p][0]<=s[p][1]<=s[i][1]: c+=1 elif s[i][0]<=s[p][1]<=s[p][0]<=s[i][1]or s[i][0]<s[p][1]<s[i][1]<s[p][0]: c+=1 for p in range(i+1,n): if s[p][0]<=s[p][1]: if s[i][0]<=s[p][0]<=s[p][1]<=s[i][1]: c+=1 elif s[i][0]<=s[p][1]<=s[p][0]<=s[i][1]or s[i][0]<s[p][1]<s[i][1]<s[p][0]: c+=1 else: for p in range(0,i): if s[p][0]<=s[p][1]: if s[i][1]<=s[p][0]<=s[p][1]<=s[i][0]or s[i][1]<s[p][0]<s[i][0]<s[p][1]: c+=1 elif s[i][1]<=s[p][1]<=s[p][0]<=s[i][0]: c+=1 for p in range(i+1,n): if s[p][0]<=s[p][1]: if s[i][1]<=s[p][0]<=s[p][1]<=s[i][0] or s[i][1]<s[p][0]<s[i][0]<s[p][1]: c+=1 elif s[i][1]<=s[p][1]<=s[p][0]<=s[i][0]: c+=1 print(int(c-d/2))