結果

問題 No.1673 Lamps on a line
ユーザー harapecoharapeco
提出日時 2022-03-30 09:54:22
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 319 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-04-26 18:23:57
合計ジャッジ時間 5,486 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,216 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 179 ms
76,024 KB
testcase_03 AC 202 ms
76,032 KB
testcase_04 AC 267 ms
76,032 KB
testcase_05 AC 102 ms
76,032 KB
testcase_06 AC 265 ms
76,032 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q = map(int,input().split())
switch = ['0']*(N+1)
for i in range(Q):
    L,R = map(int,input().split())
    for j in range(N+1):
        if switch[j] == '0' and L <= j and j <= R:
            switch[j] = '1'
        elif switch[j] == '1' and L <= j and j <= R:
            switch[j] = '0'
    print(switch.count('1'))
0