結果
問題 | No.1673 Lamps on a line |
ユーザー | ossa_2019 |
提出日時 | 2021-09-11 01:26:37 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 427 bytes |
コンパイル時間 | 368 ms |
コンパイル使用メモリ | 82,512 KB |
実行使用メモリ | 105,128 KB |
最終ジャッジ日時 | 2024-06-12 23:02:35 |
合計ジャッジ時間 | 2,956 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
52,632 KB |
testcase_01 | AC | 35 ms
53,152 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
ソースコード
from sys import stdin def main(inp, inps): N, Q = map(int, inp().split()) L, R = list(zip(*map(lambda x: list(map(int, x.split())), inps()))) now_bit = 0 result = [0]*Q for i, (l, r) in enumerate(zip(L, R)): now_bit += int("1"*(r-l+1) + "0"*(l-1)) result[i] = sum(1 for x in map(int, str(now_bit)) if x%2) print("\n".join(map(str, result))) main(stdin.readline, stdin.readlines)