結果
問題 | No.1673 Lamps on a line |
ユーザー | _matumo_ |
提出日時 | 2021-10-06 17:49:23 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 129 bytes |
コンパイル時間 | 219 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 20,640 KB |
最終ジャッジ日時 | 2024-07-23 02:55:25 |
合計ジャッジ時間 | 6,488 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
16,256 KB |
testcase_01 | AC | 30 ms
10,624 KB |
testcase_02 | AC | 388 ms
10,624 KB |
testcase_03 | AC | 384 ms
10,752 KB |
testcase_04 | AC | 642 ms
10,752 KB |
testcase_05 | AC | 61 ms
10,624 KB |
testcase_06 | AC | 599 ms
10,752 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
f=lambda:[*map(int,input().split())] N,Q=f() p=[0]*N for i in range(Q): L,R=f() for j in range(L-1,R): p[j]^=1 print(sum(p))