結果

問題 No.2559 眩しい数直線
ユーザー Tatsuo MatsuuraTatsuo Matsuura
提出日時 2023-12-02 15:10:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 566 bytes
コンパイル時間 296 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 67,712 KB
最終ジャッジ日時 2024-09-26 18:13:53
合計ジャッジ時間 2,365 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 38 ms
52,260 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 56 ms
63,104 KB
testcase_04 AC 53 ms
63,188 KB
testcase_05 AC 55 ms
63,616 KB
testcase_06 AC 72 ms
67,712 KB
testcase_07 AC 67 ms
65,792 KB
testcase_08 AC 67 ms
66,944 KB
testcase_09 AC 60 ms
65,408 KB
testcase_10 AC 54 ms
63,488 KB
testcase_11 AC 45 ms
60,672 KB
testcase_12 AC 48 ms
61,696 KB
testcase_13 AC 64 ms
66,944 KB
testcase_14 AC 70 ms
66,872 KB
testcase_15 AC 70 ms
66,444 KB
testcase_16 AC 49 ms
63,744 KB
testcase_17 AC 63 ms
65,920 KB
testcase_18 AC 52 ms
63,744 KB
testcase_19 AC 67 ms
66,560 KB
testcase_20 AC 58 ms
64,340 KB
testcase_21 AC 50 ms
62,976 KB
testcase_22 AC 66 ms
65,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

inputs = input()
inputs_arr = inputs.split(" ")

N = int(inputs_arr[0])
X = int(inputs_arr[1])
datas = []

for i in range(N):
	inputs = input()
	inputs_arr = inputs.split(" ")
	datas.append([int(inputs_arr[0]), int(inputs_arr[1])])

display_power = ""

for i in range(X):
	max_power = 0

	for j in range(N):
		position = datas[j][0]
		power = datas[j][1]
		position_len = abs((i + 1) - position)
		tmp_power = power - position_len

		if tmp_power > max_power:
			max_power = tmp_power

	display_power = display_power + str(max_power) + " "

print(display_power[:-1])
0