結果
問題 | No.2559 眩しい数直線 |
ユーザー | とろちゃ |
提出日時 | 2023-12-02 14:41:52 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,153 bytes |
コンパイル時間 | 577 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 73,984 KB |
最終ジャッジ日時 | 2024-09-26 17:10:04 |
合計ジャッジ時間 | 3,146 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
51,712 KB |
testcase_01 | AC | 41 ms
51,968 KB |
testcase_02 | AC | 41 ms
52,224 KB |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | WA | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | AC | 57 ms
62,336 KB |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
ソースコード
# import pypyjit;pypyjit.set_param("max_unroll_recursion=-1") import os import sys # from bisect import * # from collections import * # from datetime import * # from decimal import * # PyPyだと遅い # from heapq import * # from itertools import * # from math import gcd, lcm # from random import * # from string import * # import numpy as np # from atcoder.dsu import * # from atcoder.segtree import * # from more_itertools import * # from sortedcontainers import * # sys.setrecursionlimit(10**7) # PyPyは呪文を付ける # sys.set_int_max_str_digits(0) INF = 1 << 61 MOD = 998244353 # MOD = 10**9 + 7 IS_ATCODER = os.getenv("ATCODER", 0) File = sys.stdin def input(): return File.readline().replace("\n", "") # /////////////////////////////////////////////////////////////////////////// N, X = map(int, input().split()) ab = [list(map(int, input().split())) for _ in range(N)] line = [0] * X for a, b in ab: s = b for i in range(a - 1, min(X, a - 1 + b)): line[i] = max(line[i], s) s -= 1 s = b for i in range(a - 1, a - 1 - b, -1): line[i] = max(line[i], s) s -= 1 print(*line)