結果

問題 No.479 頂点は要らない
ユーザー pluto77pluto77
提出日時 2017-01-30 09:22:27
言語 Python2
(2.7.18)
結果
AC  
実行時間 665 ms / 1,500 ms
コード長 264 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 6,912 KB
実行使用メモリ 29,208 KB
最終ジャッジ日時 2024-12-23 23:51:03
合計ジャッジ時間 9,120 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,144 KB
testcase_01 AC 11 ms
6,144 KB
testcase_02 AC 12 ms
6,272 KB
testcase_03 AC 11 ms
6,144 KB
testcase_04 AC 12 ms
6,144 KB
testcase_05 AC 12 ms
6,144 KB
testcase_06 AC 11 ms
6,144 KB
testcase_07 AC 11 ms
6,144 KB
testcase_08 AC 12 ms
6,272 KB
testcase_09 AC 12 ms
6,016 KB
testcase_10 AC 12 ms
6,144 KB
testcase_11 AC 11 ms
6,144 KB
testcase_12 AC 12 ms
6,144 KB
testcase_13 AC 12 ms
6,272 KB
testcase_14 AC 12 ms
6,144 KB
testcase_15 AC 12 ms
6,272 KB
testcase_16 AC 11 ms
6,144 KB
testcase_17 AC 12 ms
6,272 KB
testcase_18 AC 12 ms
6,272 KB
testcase_19 AC 15 ms
6,400 KB
testcase_20 AC 16 ms
6,528 KB
testcase_21 AC 15 ms
6,272 KB
testcase_22 AC 14 ms
6,528 KB
testcase_23 AC 15 ms
6,400 KB
testcase_24 AC 15 ms
6,272 KB
testcase_25 AC 15 ms
6,272 KB
testcase_26 AC 665 ms
25,548 KB
testcase_27 AC 651 ms
25,548 KB
testcase_28 AC 570 ms
29,208 KB
testcase_29 AC 436 ms
25,472 KB
testcase_30 AC 453 ms
25,472 KB
testcase_31 AC 444 ms
25,472 KB
testcase_32 AC 442 ms
25,600 KB
testcase_33 AC 457 ms
22,972 KB
testcase_34 AC 531 ms
24,040 KB
testcase_35 AC 542 ms
22,752 KB
testcase_36 AC 336 ms
17,024 KB
testcase_37 AC 494 ms
23,612 KB
testcase_38 AC 418 ms
21,720 KB
testcase_39 AC 274 ms
17,664 KB
testcase_40 AC 323 ms
19,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki_479

n,m=map(int,raw_input().split())
g=[]
for i in xrange(m):
 a,b=map(int,raw_input().split())
 g.append([a,b])
g.sort()
g.reverse()

s=set()
for i in xrange(m):
 if g[i][1] in s:
  continue
 s.add(g[i][0])

res=0
for i in s:
 res+=1<<i
print bin(res)[2:]
0