結果

問題 No.479 頂点は要らない
ユーザー ckawatakckawatak
提出日時 2019-03-25 23:42:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 217 ms / 1,500 ms
コード長 447 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 90,396 KB
最終ジャッジ日時 2024-10-09 19:49:25
合計ジャッジ時間 6,296 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 38 ms
52,068 KB
testcase_03 AC 38 ms
52,480 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 39 ms
52,224 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 39 ms
52,096 KB
testcase_10 AC 38 ms
52,224 KB
testcase_11 AC 38 ms
52,224 KB
testcase_12 AC 39 ms
52,608 KB
testcase_13 AC 38 ms
52,608 KB
testcase_14 AC 38 ms
52,224 KB
testcase_15 AC 38 ms
52,096 KB
testcase_16 AC 38 ms
51,712 KB
testcase_17 AC 38 ms
52,224 KB
testcase_18 AC 37 ms
52,608 KB
testcase_19 AC 62 ms
67,200 KB
testcase_20 AC 68 ms
67,088 KB
testcase_21 AC 55 ms
64,000 KB
testcase_22 AC 69 ms
67,968 KB
testcase_23 AC 62 ms
65,664 KB
testcase_24 AC 59 ms
64,768 KB
testcase_25 AC 60 ms
66,484 KB
testcase_26 AC 217 ms
87,808 KB
testcase_27 AC 206 ms
87,876 KB
testcase_28 AC 175 ms
90,396 KB
testcase_29 AC 169 ms
83,016 KB
testcase_30 AC 162 ms
82,704 KB
testcase_31 AC 169 ms
82,940 KB
testcase_32 AC 172 ms
82,944 KB
testcase_33 AC 185 ms
83,072 KB
testcase_34 AC 199 ms
83,200 KB
testcase_35 AC 189 ms
80,384 KB
testcase_36 AC 142 ms
78,208 KB
testcase_37 AC 199 ms
83,712 KB
testcase_38 AC 183 ms
82,048 KB
testcase_39 AC 163 ms
81,664 KB
testcase_40 AC 173 ms
83,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = list(map(int, input().split(' ')))
G = [[] for _ in range(N)]
keep = [0 for _ in range(N)]

for m in range(M):
    a,b = list(map(int, input().split(' ')))
    G[min(a,b)].append(max(a,b))
        
for n in reversed(range(N)):
    for c in G[n]:
        if keep[c] == 0:
            keep[n] = 1

first = 1
for i in reversed(range(N)):
    if keep[i] == 0 and first == 1:
        continue
    first = 0
    print(keep[i], end='')
print()    
0