結果

問題 No.1673 Lamps on a line
ユーザー kyaneko999kyaneko999
提出日時 2021-09-10 22:14:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 303 ms / 2,000 ms
コード長 186 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 79,744 KB
最終ジャッジ日時 2024-06-12 00:38:08
合計ジャッジ時間 3,484 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 39 ms
51,456 KB
testcase_02 AC 197 ms
76,544 KB
testcase_03 AC 199 ms
76,544 KB
testcase_04 AC 281 ms
76,160 KB
testcase_05 AC 88 ms
72,448 KB
testcase_06 AC 246 ms
76,160 KB
testcase_07 AC 214 ms
79,104 KB
testcase_08 AC 69 ms
67,968 KB
testcase_09 AC 275 ms
76,544 KB
testcase_10 AC 278 ms
78,336 KB
testcase_11 AC 91 ms
75,008 KB
testcase_12 AC 303 ms
79,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int,input().split())
dp=[0]*(N+1)
ans=0
for _ in range(Q):
    l,r=map(int,input().split())
    for x in range(l,r+1):
      dp[x]^=1
      ans+=1 if dp[x] else -1
    print(ans)
0