結果

問題 No.479 頂点は要らない
ユーザー rpy3cpprpy3cpp
提出日時 2017-01-30 01:40:04
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 406 ms / 1,500 ms
コード長 516 bytes
コンパイル時間 187 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 30,336 KB
最終ジャッジ日時 2024-12-23 23:49:39
合計ジャッジ時間 6,999 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 28 ms
10,496 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 30 ms
10,624 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 30 ms
10,496 KB
testcase_11 AC 28 ms
10,624 KB
testcase_12 AC 27 ms
10,624 KB
testcase_13 AC 28 ms
10,624 KB
testcase_14 AC 27 ms
10,624 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 AC 28 ms
10,624 KB
testcase_17 AC 28 ms
10,624 KB
testcase_18 AC 29 ms
10,624 KB
testcase_19 AC 32 ms
10,752 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 29 ms
10,752 KB
testcase_22 AC 31 ms
10,752 KB
testcase_23 AC 31 ms
10,752 KB
testcase_24 AC 31 ms
10,880 KB
testcase_25 AC 31 ms
10,752 KB
testcase_26 AC 406 ms
29,184 KB
testcase_27 AC 385 ms
29,184 KB
testcase_28 AC 383 ms
30,336 KB
testcase_29 AC 331 ms
21,888 KB
testcase_30 AC 327 ms
21,888 KB
testcase_31 AC 332 ms
21,888 KB
testcase_32 AC 320 ms
21,888 KB
testcase_33 AC 306 ms
21,632 KB
testcase_34 AC 331 ms
22,144 KB
testcase_35 AC 317 ms
17,408 KB
testcase_36 AC 210 ms
13,952 KB
testcase_37 AC 328 ms
23,040 KB
testcase_38 AC 280 ms
20,224 KB
testcase_39 AC 205 ms
18,944 KB
testcase_40 AC 249 ms
22,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def read_data():
    n, m = map(int, input().split())
    Es = [[] for v in range(n)]
    for _ in range(m):
        a, b = map(int, input().split())
        Es[a].append(b)
    return n, m, Es

def solve(n, m, Es):
    used = [0] * n
    for v in range(n - 1, -1, -1):
        for u in Es[v]:
            if not used[u]:
                used[v] = 1
                break
    while not used[-1]:
        used.pop()
    used.reverse()
    return ''.join(map(str, used))

n, m, Es = read_data()
print(solve(n, m, Es))
0