×
解除綁定,重新設定系統帳號的密碼
您的系統帳號 ID:
您的系統帳號:
您的帳號暱稱:
設定新密碼:
設定新密碼:
×
請輸入要加入的「課程代碼」
請向開設課程的使用者索取「課程代碼」
分類題庫
解題動態
排行榜
討論區
競賽區
登入
註冊
發表新討論
#20976: python 80% (TLE)求救
youngyoung
(06 蘇昱揚 306)
學校 : 臺北市私立延平高級中學
編號 : 98924
×
傳送站內訊息
傳給:
主題:
內容:
來源 : [180.217.13.133]
最後登入時間 :
2022-05-03 14:31:59
c291.
APCS 2017-0304-2小群體
--
2017年
3月
APCS
| From: [101.12.139.165] | 發表日期 : 2020-03-23 20:10
FriendList = input()
FriendList = [eval(i) for i in input().split()]
NotInGroup = [i for i in range(len(FriendList))]
Groups = 0
while len(NotInGroup) > 0:
head = NotInGroup.pop(NotInGroup.index(FriendList[NotInGroup[0]]))
i = head
while FriendList[i] != head:
i = NotInGroup.pop(NotInGroup.index(FriendList[i]))
Groups += 1
print(Groups)
#20983: Re:python 80% (TLE)求救
fire5386
(becaidorz)
學校 : 國立清華大學
編號 : 115822
×
傳送站內訊息
傳給:
主題:
內容:
來源 : [140.114.253.147]
最後登入時間 :
2024-10-03 15:39:22
c291.
APCS 2017-0304-2小群體
--
2017年
3月
APCS
| From: [111.249.71.207] | 發表日期 : 2020-03-23 21:17
FriendList = input()
FriendList = [eval(i) for i in input().split()]
NotInGroup = [i for i in range(len(FriendList))]
Groups = 0
while len(NotInGroup) > 0:
head = NotInGroup.pop(NotInGroup.index(FriendList[NotInGroup[0]]))
i = head
while FriendList[i] != head:
i = NotInGroup.pop(NotInGroup.index(FriendList[i]))
Groups += 1
print(Groups)
https://66lemon66.blogspot.com/2020/03/zerojudge-c291-apcs-2017-0304-2-c.html
ZeroJudge Forum