結果
問題 | No.561 東京と京都 |
ユーザー | uma66 |
提出日時 | 2018-02-08 09:36:50 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 331 bytes |
コンパイル時間 | 249 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 44,764 KB |
最終ジャッジ日時 | 2024-09-22 03:37:39 |
合計ジャッジ時間 | 13,825 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 507 ms
44,452 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 511 ms
44,444 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 510 ms
44,068 KB |
testcase_18 | WA | - |
testcase_19 | AC | 507 ms
44,572 KB |
testcase_20 | WA | - |
ソースコード
import numpy as np N, D = map(int, input().split()) T, K = map(int, input().split()) dp = np.zeros((N, 2), dtype=int) dp[0][0] = T dp[0][1] = K for i in range(1, N): T, K = map(int, input().split()) dp[i][0] = T + max(dp[i-1][0], dp[i-1][1] - D) dp[i][1] = K + max(dp[i-1][1], dp[i-1][0] - D) print(max(dp[N-1]))