結果

問題 No.2359 A in S ?
ユーザー 遭難者遭難者
提出日時 2023-01-08 14:10:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 690 ms / 2,000 ms
コード長 666 bytes
コンパイル時間 528 ms
コンパイル使用メモリ 82,912 KB
実行使用メモリ 338,844 KB
最終ジャッジ日時 2024-06-09 20:32:38
合計ジャッジ時間 17,022 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 621 ms
308,848 KB
testcase_01 AC 578 ms
309,548 KB
testcase_02 AC 577 ms
310,272 KB
testcase_03 AC 577 ms
309,180 KB
testcase_04 AC 667 ms
338,684 KB
testcase_05 AC 675 ms
335,316 KB
testcase_06 AC 684 ms
338,844 KB
testcase_07 AC 673 ms
337,296 KB
testcase_08 AC 690 ms
338,424 KB
testcase_09 AC 648 ms
338,700 KB
testcase_10 AC 624 ms
338,568 KB
testcase_11 AC 663 ms
338,340 KB
testcase_12 AC 665 ms
338,268 KB
testcase_13 AC 673 ms
338,316 KB
testcase_14 AC 647 ms
338,156 KB
testcase_15 AC 632 ms
338,168 KB
testcase_16 AC 651 ms
338,340 KB
testcase_17 AC 643 ms
338,744 KB
testcase_18 AC 632 ms
338,396 KB
testcase_19 AC 657 ms
338,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
n, m = map(int, input().split())
inf = 10 ** 5 + 1
s_inf = 316
pl = [[0 for i in range(inf)] for j in range(s_inf)]
a = [0 for i in range(inf)]
for _ in range(n):
    l, r, x, y = map(int, input().split())
    l = (l - y + x - 1) // x * x + y
    r = (r - y + x) // x * x + y
    if x < s_inf:
        pl[x][l] += 1
        if r < inf:
            pl[x][r] -= 1
    else:
        while l < r:
            a[l] += 1
            l += x
for x in range(1, s_inf):
    for y in range(x, inf):
        pl[x][y] += pl[x][y - x]
    for y in range(inf):
        a[y] += pl[x][y]
for i in list(map(int, input().split())):
    print(a[i])
0