結果
問題 | No.2757 Pin Game |
ユーザー | moon17 |
提出日時 | 2024-05-17 22:40:57 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 276 bytes |
コンパイル時間 | 329 ms |
コンパイル使用メモリ | 82,412 KB |
実行使用メモリ | 164,880 KB |
最終ジャッジ日時 | 2024-05-17 22:41:07 |
合計ジャッジ時間 | 1,676 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
52,880 KB |
testcase_01 | AC | 33 ms
52,616 KB |
testcase_02 | AC | 33 ms
53,868 KB |
testcase_03 | AC | 32 ms
52,676 KB |
testcase_04 | WA | - |
testcase_05 | AC | 185 ms
164,880 KB |
testcase_06 | AC | 36 ms
52,612 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
ソースコード
n,k,*x=map(int,open(0).read().split()) uf=[*range(n)] def find(x): q=[] while uf[x]^x:q+=x,;x=uf[x] for p in q:uf[p]=x return x def unite(x,y): x,y=find(x),find(y) if x^y:uf[x]=y p=0 for i in range(n): if x[i]-x[p]<k: unite(p,i) else: p=i print(len(set(uf)))