結果

問題 No.561 東京と京都
ユーザー megasharesmegashares
提出日時 2018-09-13 14:32:43
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 23,424 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 04:24:15
合計ジャッジ時間 866 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 0 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 0 ms
6,940 KB
testcase_05 AC 0 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 0 ms
6,940 KB
testcase_10 AC 1 ms
6,944 KB
testcase_11 AC 0 ms
6,944 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 0 ms
6,944 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 0 ms
6,944 KB
testcase_16 AC 0 ms
6,944 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 0 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:15:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   15 |         scanf("%d%d", &n, &d);
      |         ~~~~~^~~~~~~~~~~~~~~~
main.cpp:18:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   18 |                 scanf("%d%d", &t[i], &k[i]);
      |                 ~~~~~^~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>

int f[120][2] = {};

int max(int a, int b) {
	return a > b ? a : b;
}

int main() {
	int n, d;
	int t[120];
	int k[120];
	int i, j;

	scanf("%d%d", &n, &d);

	for (i = 1; i <= n; i++) {
		scanf("%d%d", &t[i], &k[i]);
	}

	f[0][1] = -d;
	for (i = 1; i <= n; i++) {
		f[i][0] = max(f[i - 1][0] + t[i], f[i - 1][1] + k[i] - d);
		f[i][1] = max(f[i - 1][0] + t[i]-d, f[i - 1][1] + k[i]);
	}

	int result = max(f[n][0], f[n][1]);

	printf("%d", result);

	getchar(); getchar();
	return 0;
}
0