結果
問題 | No.556 仁義なきサルたち |
ユーザー | dragonlaunch |
提出日時 | 2017-11-12 04:34:40 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 924 bytes |
コンパイル時間 | 197 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 26,112 KB |
最終ジャッジ日時 | 2024-11-24 20:43:52 |
合計ジャッジ時間 | 27,249 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
ソースコード
import time N,M = [int(i) for i in input().split()] battle = [] for i in range (M): battle.append(list(int(i) for i in input().split())) monkey = list(range(1,N+1)) group = [] for i in range(N): group.append([(monkey[i])]) print(group,battle) def bat(a,b): if a == b: return a elif len(a) == len(b): if a[0] < b[0]: return a + b if b[0] < a[0]: return b + a elif len(a) > len(b): return a + b elif len(b) > len(a): return b + a for i in range(M): for j in range(len(group)): if battle[i][0] in group[j]: x = group[j] if battle[i][1] in group[j]: y = group[j] if x in group: group.remove(x) if y in group: group.remove(y) group.append(bat(x,y)) for i in group: for j in i: monkey[j-1] = group[group.index(i)][0] for i in range(N): print(monkey[i])