結果

問題 No.1557 Binary Variable
ユーザー vwxyzvwxyz
提出日時 2024-06-01 20:43:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 282 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 905,036 KB
最終ジャッジ日時 2024-12-22 10:10:04
合計ジャッジ時間 74,595 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 TLE -
testcase_02 MLE -
testcase_03 AC 32 ms
17,440 KB
testcase_04 AC 727 ms
466,572 KB
testcase_05 AC 712 ms
24,320 KB
testcase_06 AC 705 ms
312,064 KB
testcase_07 AC 685 ms
23,680 KB
testcase_08 AC 772 ms
295,304 KB
testcase_09 AC 728 ms
25,600 KB
testcase_10 AC 773 ms
470,452 KB
testcase_11 AC 779 ms
27,136 KB
testcase_12 AC 731 ms
280,192 KB
testcase_13 AC 805 ms
27,520 KB
testcase_14 MLE -
testcase_15 AC 795 ms
28,032 KB
testcase_16 MLE -
testcase_17 AC 1,039 ms
49,408 KB
testcase_18 AC 982 ms
489,604 KB
testcase_19 TLE -
testcase_20 MLE -
testcase_21 TLE -
testcase_22 MLE -
testcase_23 TLE -
testcase_24 MLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 MLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 AC 30 ms
10,496 KB
testcase_35 AC 32 ms
10,496 KB
testcase_36 AC 31 ms
457,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
query=[[] for R in range(N+1)]
for m in range(M):
    L,R=map(int,input().split())
    query[R].append(L)
queue=[]
for R in range(1,N+1):
    for L in query[R]:
        if not queue or queue[-1]<L:
            queue.append(R)
ans=N-len(queue)
print(ans)
0