結果

問題 No.479 頂点は要らない
ユーザー qibqib
提出日時 2023-02-20 01:07:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 179 ms / 1,500 ms
コード長 424 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 93,440 KB
最終ジャッジ日時 2024-07-20 21:50:43
合計ジャッジ時間 5,316 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,840 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 34 ms
51,712 KB
testcase_04 AC 34 ms
51,968 KB
testcase_05 AC 34 ms
51,840 KB
testcase_06 AC 34 ms
51,968 KB
testcase_07 AC 34 ms
51,840 KB
testcase_08 AC 40 ms
51,712 KB
testcase_09 AC 35 ms
51,968 KB
testcase_10 AC 37 ms
51,584 KB
testcase_11 AC 37 ms
51,712 KB
testcase_12 AC 35 ms
51,584 KB
testcase_13 AC 35 ms
52,096 KB
testcase_14 AC 34 ms
51,584 KB
testcase_15 AC 33 ms
51,968 KB
testcase_16 AC 36 ms
52,224 KB
testcase_17 AC 35 ms
51,584 KB
testcase_18 AC 34 ms
51,968 KB
testcase_19 AC 52 ms
62,080 KB
testcase_20 AC 50 ms
62,208 KB
testcase_21 AC 50 ms
61,568 KB
testcase_22 AC 51 ms
61,824 KB
testcase_23 AC 52 ms
61,952 KB
testcase_24 AC 53 ms
62,080 KB
testcase_25 AC 48 ms
55,936 KB
testcase_26 AC 172 ms
89,344 KB
testcase_27 AC 179 ms
89,216 KB
testcase_28 AC 145 ms
93,440 KB
testcase_29 AC 143 ms
84,992 KB
testcase_30 AC 143 ms
84,992 KB
testcase_31 AC 143 ms
85,248 KB
testcase_32 AC 149 ms
84,992 KB
testcase_33 AC 155 ms
84,224 KB
testcase_34 AC 176 ms
84,736 KB
testcase_35 AC 167 ms
82,304 KB
testcase_36 AC 128 ms
79,104 KB
testcase_37 AC 163 ms
84,864 KB
testcase_38 AC 149 ms
83,840 KB
testcase_39 AC 129 ms
81,920 KB
testcase_40 AC 144 ms
83,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
g = [[] for _ in range(n)]
for e in range(m):
  a, b = map(int, input().split())
  g[a].append((b, e))

ans = ["0" for _ in range(n)]
used = [False for _ in range(m)]
for u in range(n - 1, -1, -1):
  for v, e in g[u]:
    if used[e]:
      continue
    used[e] = True
    if ans[v] == "0":
      ans[u] = "1"

while len(ans) > 1 and ans[-1] == "0":
  ans.pop()

print(''.join(reversed(ans)))
0