結果

問題 No.479 頂点は要らない
ユーザー 👑 rin204rin204
提出日時 2022-07-10 16:23:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 1,500 ms
コード長 409 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 91,648 KB
最終ジャッジ日時 2024-06-11 05:24:00
合計ジャッジ時間 5,190 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,968 KB
testcase_01 AC 32 ms
52,276 KB
testcase_02 AC 34 ms
51,968 KB
testcase_03 AC 33 ms
51,712 KB
testcase_04 AC 32 ms
51,968 KB
testcase_05 AC 32 ms
52,096 KB
testcase_06 AC 32 ms
51,968 KB
testcase_07 AC 32 ms
51,968 KB
testcase_08 AC 34 ms
51,840 KB
testcase_09 AC 31 ms
51,840 KB
testcase_10 AC 31 ms
51,968 KB
testcase_11 AC 31 ms
52,096 KB
testcase_12 AC 32 ms
52,096 KB
testcase_13 AC 31 ms
51,968 KB
testcase_14 AC 31 ms
51,712 KB
testcase_15 AC 32 ms
51,712 KB
testcase_16 AC 31 ms
51,712 KB
testcase_17 AC 31 ms
52,096 KB
testcase_18 AC 31 ms
52,096 KB
testcase_19 AC 48 ms
65,408 KB
testcase_20 AC 55 ms
65,488 KB
testcase_21 AC 50 ms
61,312 KB
testcase_22 AC 56 ms
64,896 KB
testcase_23 AC 53 ms
62,464 KB
testcase_24 AC 45 ms
62,208 KB
testcase_25 AC 47 ms
64,896 KB
testcase_26 AC 164 ms
87,552 KB
testcase_27 AC 159 ms
87,808 KB
testcase_28 AC 129 ms
91,648 KB
testcase_29 AC 146 ms
82,928 KB
testcase_30 AC 142 ms
82,724 KB
testcase_31 AC 131 ms
82,604 KB
testcase_32 AC 128 ms
82,560 KB
testcase_33 AC 152 ms
82,604 KB
testcase_34 AC 143 ms
82,752 KB
testcase_35 AC 142 ms
80,256 KB
testcase_36 AC 119 ms
77,784 KB
testcase_37 AC 152 ms
83,932 KB
testcase_38 AC 150 ms
82,688 KB
testcase_39 AC 130 ms
81,748 KB
testcase_40 AC 139 ms
83,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
edges = [[] for _ in range(n)]
for _ in range(m):
    u, v = map(int, input().split())
    edges[u].append(v)
used = [False] * n
one = False
for i in range(n - 1, -1, -1):
    for v in edges[i]:
        if not used[v]:
            used[i] = True
            break
    if used[i]:
        print("1", end="")
        one = True
    elif one:
        print("0", end="")
print()

0