結果

問題 No.1673 Lamps on a line
ユーザー stoqstoq
提出日時 2021-08-02 09:29:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,016 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-06-11 21:33:57
合計ジャッジ時間 6,336 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 378 ms
10,752 KB
testcase_03 AC 376 ms
10,752 KB
testcase_04 AC 629 ms
10,752 KB
testcase_05 AC 61 ms
10,752 KB
testcase_06 AC 549 ms
10,752 KB
testcase_07 AC 563 ms
13,696 KB
testcase_08 AC 66 ms
12,800 KB
testcase_09 AC 785 ms
11,392 KB
testcase_10 AC 796 ms
12,544 KB
testcase_11 AC 120 ms
12,800 KB
testcase_12 AC 1,016 ms
14,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
sum = 0
a = []
for i in range(0, n):
    a.append(0)
for i in range(0, q):
    l, r = map(int, input().split())
    l -= 1
    for j in range(l, r):
        if a[j] == 0:
            a[j] = 1
            sum += 1
        else:
            a[j] = 0
            sum -= 1
    print(sum)


0