結果

問題 No.126 2基のエレベータ
ユーザー chiwakii
提出日時 2015-01-13 23:31:52
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 129 bytes
コンパイル時間 545 ms
コンパイル使用メモリ 54,560 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-06-22 05:25:24
合計ジャッジ時間 1,386 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other AC * 6 WA * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using namespace std;
int main(void)
{
	int A,B,S;
	cin >> A >> B >> S;
	S*=2;
	S-=S-A;
	cout << S << endl;
}
0