結果

問題 No.561 東京と京都
ユーザー ohreitetsuohreitetsu
提出日時 2017-11-09 14:59:43
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 517 bytes
コンパイル時間 486 ms
コンパイル使用メモリ 53,980 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 08:47:20
合計ジャッジ時間 1,135 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
testcase_13 WA -
testcase_14 AC 1 ms
5,376 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
int main(int argc, char* argv[])
{
	int N,D;
	cin>>N>>D;
	int i;
	int T,K;
	int aw=0;
	bool bTokyo=true;
	for (i=0;i<N;i++){
		cin>>T>>K;
		if (T>=K && bTokyo){
			aw+=T;
			continue;
		}
		if (K>=T && !bTokyo){
			aw+=K;
			continue;
		}

		if (bTokyo){
			K-=D;
			bTokyo=false;
		}else{
			bTokyo=true;
			T-=D;
		}
		if (T>=K){
			aw+=T;
			if (!bTokyo){
				bTokyo=true;
			}
		}else{
			aw+=K;
			if (bTokyo){
				bTokyo=false;
			}
		}
	}
	cout<<aw<<endl;
	return 0;
} 
0