結果

問題 No.1673 Lamps on a line
ユーザー harapecoharapeco
提出日時 2022-03-30 11:43:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 323 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,848 KB
最終ジャッジ日時 2024-04-26 19:59:58
合計ジャッジ時間 5,340 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,344 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 206 ms
76,544 KB
testcase_03 AC 200 ms
76,416 KB
testcase_04 AC 284 ms
76,288 KB
testcase_05 AC 108 ms
76,416 KB
testcase_06 AC 268 ms
76,672 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(L-1,R+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