結果

問題 No.479 頂点は要らない
ユーザー nebukuro09nebukuro09
提出日時 2017-01-27 22:55:56
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 347 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 25,472 KB
最終ジャッジ日時 2024-06-06 05:04:58
合計ジャッジ時間 6,607 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
6,816 KB
testcase_01 AC 9 ms
6,940 KB
testcase_02 AC 9 ms
6,944 KB
testcase_03 AC 8 ms
6,940 KB
testcase_04 AC 9 ms
6,940 KB
testcase_05 AC 9 ms
6,944 KB
testcase_06 AC 9 ms
6,940 KB
testcase_07 AC 9 ms
6,940 KB
testcase_08 AC 9 ms
6,940 KB
testcase_09 AC 9 ms
6,944 KB
testcase_10 AC 9 ms
6,940 KB
testcase_11 AC 10 ms
6,940 KB
testcase_12 AC 9 ms
6,944 KB
testcase_13 AC 9 ms
6,940 KB
testcase_14 AC 8 ms
6,944 KB
testcase_15 AC 9 ms
6,944 KB
testcase_16 AC 9 ms
6,944 KB
testcase_17 AC 9 ms
6,940 KB
testcase_18 WA -
testcase_19 AC 12 ms
6,944 KB
testcase_20 AC 12 ms
6,940 KB
testcase_21 AC 12 ms
6,944 KB
testcase_22 AC 12 ms
6,944 KB
testcase_23 AC 14 ms
6,944 KB
testcase_24 AC 11 ms
6,944 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 522 ms
25,344 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, raw_input().split())
ans = [False for i in xrange(n)]
query = [map(int, raw_input().split()) for _ in xrange(m)]
used = [False for _ in xrange(n)]
for i in xrange(m-1, -1, -1):
    a, b = query[i]
    if not used[b]:
        ans[a] = True
        used[a] = True
#print ans
print int(''.join(map(lambda x: '01'[x], reversed(ans))))
0