結果

問題 No.1059 素敵な集合
ユーザー mkawa2mkawa2
提出日時 2021-05-26 22:52:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 726 ms / 2,000 ms
コード長 1,237 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 189,000 KB
最終ジャッジ日時 2024-10-15 16:44:33
合計ジャッジ時間 5,490 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,248 KB
testcase_01 AC 726 ms
189,000 KB
testcase_02 AC 128 ms
93,824 KB
testcase_03 AC 40 ms
53,632 KB
testcase_04 AC 42 ms
53,120 KB
testcase_05 AC 40 ms
53,632 KB
testcase_06 AC 109 ms
89,344 KB
testcase_07 AC 112 ms
89,600 KB
testcase_08 AC 123 ms
94,336 KB
testcase_09 AC 84 ms
79,616 KB
testcase_10 AC 158 ms
96,640 KB
testcase_11 AC 126 ms
89,600 KB
testcase_12 AC 99 ms
83,200 KB
testcase_13 AC 178 ms
101,120 KB
testcase_14 AC 70 ms
71,040 KB
testcase_15 AC 284 ms
115,624 KB
testcase_16 AC 124 ms
92,160 KB
testcase_17 AC 123 ms
92,032 KB
testcase_18 AC 100 ms
87,936 KB
testcase_19 AC 716 ms
181,508 KB
testcase_20 AC 684 ms
176,352 KB
testcase_21 AC 258 ms
114,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.buffer.readline())
def LI(): return list(map(int, sys.stdin.buffer.readline().split()))
def LI1(): return list(map(int1, sys.stdin.buffer.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def BI(): return sys.stdin.buffer.readline().rstrip()
def SI(): return sys.stdin.buffer.readline().rstrip().decode()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
dij = [(0, 1), (1, 0), (1, 1), (1, -1)]
inf = 10**16
# md = 998244353
md = 10**9+7

from collections import defaultdict

l, r = LI()
to = defaultdict(list)
for i in range(l, r+1):
    for j in range(i+i, r+1, i):
        to[i].append(j)
        to[j].append(i)

def dfs(i):
    stack = [i]
    fin[i] = True
    while stack:
        i = stack.pop()
        for j in to[i]:
            if fin[j]: continue
            fin[j] = True
            stack.append(j)

fin = [False]*(r+1)
ans = 0
for i in range(l, r+1):
    if fin[i]: continue
    dfs(i)
    ans += 1

print(ans-1)
0