結果
問題 | No.1673 Lamps on a line |
ユーザー | harapeco |
提出日時 | 2022-03-30 11:48:53 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 314 bytes |
コンパイル時間 | 345 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 78,976 KB |
最終ジャッジ日時 | 2024-04-26 20:04:21 |
合計ジャッジ時間 | 5,082 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
56,960 KB |
testcase_01 | AC | 38 ms
51,840 KB |
testcase_02 | AC | 217 ms
76,800 KB |
testcase_03 | AC | 215 ms
76,800 KB |
testcase_04 | AC | 287 ms
76,672 KB |
testcase_05 | AC | 98 ms
76,032 KB |
testcase_06 | AC | 248 ms
76,672 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
N,Q = map(int,input().split()) switch = [0]*(N) ans = 0 for i in range(Q): L,R = map(int,input().split()) for j in range(L-1,R): if switch[j] == 0: switch[j] = 1 ans += 1 elif switch[j] == 1: switch[j] = 0 ans -= 1 print(switch.count(1))