結果

問題 No.561 東京と京都
ユーザー dangodango
提出日時 2023-06-14 16:19:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 167 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 54,104 KB
最終ジャッジ日時 2024-06-23 00:32:51
合計ジャッジ時間 1,512 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,224 KB
testcase_01 AC 31 ms
52,612 KB
testcase_02 AC 34 ms
52,872 KB
testcase_03 AC 33 ms
52,948 KB
testcase_04 AC 34 ms
53,000 KB
testcase_05 AC 32 ms
52,412 KB
testcase_06 AC 32 ms
52,580 KB
testcase_07 AC 33 ms
52,572 KB
testcase_08 AC 33 ms
53,496 KB
testcase_09 AC 31 ms
52,824 KB
testcase_10 AC 32 ms
52,312 KB
testcase_11 AC 32 ms
52,496 KB
testcase_12 AC 33 ms
53,724 KB
testcase_13 AC 32 ms
52,704 KB
testcase_14 AC 32 ms
54,104 KB
testcase_15 AC 33 ms
53,620 KB
testcase_16 AC 32 ms
53,096 KB
testcase_17 AC 35 ms
52,492 KB
testcase_18 AC 35 ms
52,768 KB
testcase_19 AC 37 ms
52,836 KB
testcase_20 AC 34 ms
52,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, D = map(int,input().split())
T, K = 0, -D
for _ in '1' * N:
  A, B = map(int,input().split())
  T, K = max(T + A, K + A - D), max(T + B - D, K + B)
print(max(T, K))
0