結果

問題 No.1673 Lamps on a line
ユーザー harapecoharapeco
提出日時 2022-03-30 09:54:22
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 319 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 150,452 KB
最終ジャッジ日時 2024-11-14 08:21:12
合計ジャッジ時間 19,100 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
59,304 KB
testcase_01 AC 37 ms
125,032 KB
testcase_02 AC 172 ms
83,072 KB
testcase_03 AC 189 ms
150,452 KB
testcase_04 AC 254 ms
82,816 KB
testcase_05 AC 93 ms
148,040 KB
testcase_06 AC 251 ms
83,084 KB
testcase_07 TLE -
testcase_08 AC 1,585 ms
78,624 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
権限があれば一括ダウンロードができます

ソースコード

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